Skip to content

Commit

Permalink
fix(core): remove redundant second parameter of initialization api
Browse files Browse the repository at this point in the history
  • Loading branch information
mym0404 committed May 14, 2024
1 parent 09a329e commit ac1b272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const Native: Spec = Module
export async function initializeKakaoSDK(
appKey: string,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
options: { web?: { javascriptKey: string; restApiKey: string } },
options?: { web?: { javascriptKey: string; restApiKey: string } },
): Promise<void> {
Native.initializeKakaoSDK(appKey);
}
Expand Down

0 comments on commit ac1b272

Please sign in to comment.