Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
broody committed Dec 9, 2024
1 parent 684cde0 commit f379cc7
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions packages/keychain/src/components/connect/CreateSession.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,19 +131,13 @@ export function CreateSession({
<ControllerErrorAlert error={error} />
)}
<HStack spacing={4} width="full">
<Button
onClick={() => onConnect()}
isDisabled={isConnecting}
px={10}
>
<Button onClick={() => onConnect()} isDisabled={isConnecting} px={10}>
Skip
</Button>
<Button
colorScheme="colorful"
isDisabled={
isDisabled ||
isConnecting ||
(!policies?.verified && !isConsent)
isDisabled || isConnecting || (!policies?.verified && !isConsent)
}
isLoading={isConnecting}
onClick={() => onCreateSession()}
Expand Down

0 comments on commit f379cc7

Please sign in to comment.