Skip to content

Commit dc82497

Browse files
committed
Switch from fragment to JSX shorthand in storecontext provider
1 parent c2c33f7 commit dc82497

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/providers/BigStoreProvider/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const BigStoreProvider = (props: { children: React.ReactElement }) => {
3232
setUser
3333
}}
3434
>
35-
{!loading ? props.children : React.Fragment}
35+
{!loading ? props.children : <></>}
3636
</BigStoreContext.Provider>
3737
);
3838
};

0 commit comments

Comments
 (0)