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