Skip to content

Commit

Permalink
Merge branch 'fix-button-color-in-revoked-view'
Browse files Browse the repository at this point in the history
  • Loading branch information
raksooo committed Nov 16, 2023
2 parents 8eaa5c3 + d748519 commit 3ef753c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gui/src/renderer/components/DeviceRevokedView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export function DeviceRevokedView() {
const { leaveRevokedDevice } = useAppContext();
const tunnelState = useSelector((state) => state.connection.status);

const Button = tunnelState.state === 'disconnected' ? AppButton.GreenButton : AppButton.RedButton;
const Button = tunnelState.state === 'disconnected' ? AppButton.BlueButton : AppButton.RedButton;

return (
<Layout>
Expand Down

0 comments on commit 3ef753c

Please sign in to comment.