Skip to content

Commit

Permalink
fix: export
Browse files Browse the repository at this point in the history
  • Loading branch information
mic-web committed Sep 6, 2024
1 parent f52edc7 commit 8e2cf6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GlobalFormsProvider/GlobalFormsContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export type GlobalFormsContextType = {
submit: (additionalCallback?: CallbackWithOrder) => Promise<boolean>;
};

const GlobalFormsContext = React.createContext<GlobalFormsContextType>({
export const GlobalFormsContext = React.createContext<GlobalFormsContextType>({
isSubmitting: false,
reset: () => {},
setResetCallback: () => {},
Expand Down

0 comments on commit 8e2cf6f

Please sign in to comment.