Skip to content

Commit

Permalink
fix: typo in login function parameter 'prompt'
Browse files Browse the repository at this point in the history
  • Loading branch information
mym0404 committed Jun 5, 2024
1 parent 2ed9d6e commit 50f7fed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"prepare": "husky",
"release": "./script/release.sh",
"codegen:android": "cd ../../example/android && ./gradlew generateCodegenArtifactsFromSchema",
"codegen:ios": "node ../../example/node_modules/react-native/scripts/generate-codegen-artifacts.js --path example/ --outputPath ../../example/ios",
"codegen:ios": "react-native codegen --path example/ --outputPath ../../example/ios",
"codegen": "yarn codegen:android && yarn codegen:ios",
"build:expo-config-plugin": "tsc --project ./expo-config-plugin",
"prepack": "yarn build:expo-config-plugin && bob build",
Expand Down
2 changes: 1 addition & 1 deletion packages/user/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export function login({
scopes,
}: {
serviceTerms?: string[];
prompts?: ('Loign' | 'Create' | 'Cert' | 'UnifyDaum' | 'SelectAccount')[];
prompts?: ('Login' | 'Create' | 'Cert' | 'UnifyDaum' | 'SelectAccount')[];
scopes?: string[];
useKakaoAccountLogin?: boolean;
web?: {
Expand Down

0 comments on commit 50f7fed

Please sign in to comment.