Skip to content

Commit 571d996

Browse files
author
dschlabach
committed
fix build
1 parent 7bec7bd commit 571d996

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

playground/nextjs-app-router/components/AppProvider.tsx

-4
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,6 @@ export const AppProvider = ({ children }: { children: React.ReactNode }) => {
123123
if (storedPaymasters) {
124124
setPaymastersState(JSON.parse(storedPaymasters));
125125
}
126-
127-
// Wait for all useStateWithStorage hooks to initialize
128-
setIsInitialized(true);
129126
}, []);
130127

131128
const setPaymaster = (chainId: number, url: string, enabled: boolean) => {
@@ -140,7 +137,6 @@ export const AppProvider = ({ children }: { children: React.ReactNode }) => {
140137
return (
141138
<AppContext.Provider
142139
value={{
143-
isInitialized,
144140
activeComponent,
145141
setActiveComponent,
146142
chainId,

0 commit comments

Comments
 (0)