Skip to content

Commit

Permalink
Resolve merge conflicts (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucyjemutai authored Apr 21, 2023
1 parent 7fe5317 commit e962c61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ohri-form.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ const OHRIForm: React.FC<OHRIFormProps> = ({
);

const { t } = useTranslation();
const encDate = new Date();
const encDate = useMemo(() => new Date(), []);
const handlers = new Map<string, FormSubmissionHandler>();
const ref = useRef(null);
const workspaceLayout = useWorkspaceLayout(ref);
Expand Down

0 comments on commit e962c61

Please sign in to comment.