0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-31 22:51:25 -05:00

fix(schemas): fix aleration script typo (#2905)

This commit is contained in:
simeng-li 2023-01-10 19:36:45 +08:00 committed by GitHub
parent 20800e809c
commit 0216cf3696
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4,7 +4,7 @@ import type { AlterationScript } from '../lib/types/alteration.js';
enum OldSignInIdentifier {
Email = 'email',
Sms = 'Sms',
Sms = 'sms',
Username = 'username',
}
@ -32,7 +32,7 @@ type OldSignInExperience = {
enum SignInIdentifier {
Email = 'email',
Phone = 'Phone',
Phone = 'phone',
Username = 'username',
}