Skip to content

Commit

Permalink
fix: fix popup
Browse files Browse the repository at this point in the history
  • Loading branch information
egor-kolesnikov authored and jsapro committed Nov 14, 2023
1 parent 148d9af commit 24e3ebf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/contexts/popup-context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const PopupContext = createContext<PopupContextType | undefined>(undefined);

export const PopupProvider: React.FC<{ children: ReactNode }> = ({ children }) => {
const [popupState, setPopupState] = useState({
openPopup: true,
openPopup: false,
openPopupLogin: false,
openPopupRegistration: false,
});
Expand Down

0 comments on commit 24e3ebf

Please sign in to comment.