chore: set the default token quota to 1$

This commit is contained in:
JustSong 2023-07-02 16:45:42 +08:00
parent 1ab5fb7d2d
commit c90c0ecef4

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
};