chore: set the default token quota to 1$

This commit is contained in:
JustSong
2023-07-02 16:45:42 +08:00
parent 87872d9c41
commit 84ce8c4b02

View File

@@ -11,7 +11,7 @@ const EditToken = () => {
const [loading, setLoading] = useState(isEdit);
const originInputs = {
name: '',
remain_quota: 0,
remain_quota: isEdit ? 0 : 500000,
expired_time: -1,
unlimited_quota: false
};