Skip to content

Commit ab4eec5

Browse files
chore: changed useAppKitContext error message
1 parent 67efd2c commit ab4eec5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/appkit/src/hooks/useAppKitContext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const useAppKitContext = (): AppKitContextType => {
3131
const context = useContext(AppKitContext);
3232

3333
if (context === undefined) {
34-
throw new Error('useAppKit must be used within an AppKitProvider');
34+
throw new Error('useAppKitContext must be used within an AppKitProvider');
3535
}
3636

3737
if (!context.appKit) {

0 commit comments

Comments
 (0)