Skip to content

Commit

Permalink
fix: revert changes to fix conflict
Browse files Browse the repository at this point in the history
Signed-off-by: bunsy-0900 <[email protected]>
  • Loading branch information
bunsy-0900 committed May 16, 2024
1 parent d13f026 commit 325f9c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 3 additions & 3 deletions signup-ui/src/components/ui/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
{...props}
>
{isLoading ? (
<LoadingIndicator />
) : (
<>{children}</>
<LoadingIndicator />
) : (
<>{children}</>
)}
</Comp>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ import { isEqual } from "lodash";
import { create } from "zustand";
import { devtools } from "zustand/middleware";



import { Error } from "~typings/types";

export enum EkycVerificationStep {
Expand Down

0 comments on commit 325f9c3

Please sign in to comment.