Skip to content

Commit

Permalink
Refactor: change order of buttons in RegisterPreview
Browse files Browse the repository at this point in the history
  • Loading branch information
georgipavlov-7DIGIT committed Nov 25, 2024
1 parent a11526f commit 6e98cec
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/blocks/RegisterPreview/RegisterPreview.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,15 @@ export const RegisterPreview = ({ handleLoginRedirection }) => {
onClick={handleLoginRedirection}
/>
<Button
label={t("register_email")}
label={t("register_anonymously")}
size="lg"
onClick={() => handleRedirect("email")}
onClick={() => handleRedirect("anonymously")}
/>
<Button
label={t("register_anonymously")}
label={t("register_email")}
size="lg"
type="secondary"
onClick={() => handleRedirect("anonymously")}
type="ghost"
onClick={() => handleRedirect("email")}
/>
<Button
label={t("continue_as_guest")}
Expand Down

0 comments on commit 6e98cec

Please sign in to comment.