Skip to content

Commit

Permalink
* minor fix to confirmation message check - it's a boolean not a stri…
Browse files Browse the repository at this point in the history
…ng being returned.
  • Loading branch information
ShadeWyrm committed Jan 16, 2025
1 parent 3b72583 commit 62ff957
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ export const Publish = ({ id }: { id: string }) => {
</Button>
</li>
<li className="my-4">
{hasHydrated ? <Icon checked={confirmationMessage !== undefined} /> : IconLoading}
{hasHydrated ? <Icon checked={confirmationMessage} /> : IconLoading}
<Button theme={"link"} onClick={routeToConfirmation}>
{t("formConfirmationMessage")}
</Button>
Expand Down

0 comments on commit 62ff957

Please sign in to comment.