Skip to content

Commit

Permalink
Correctly hide the warning
Browse files Browse the repository at this point in the history
  • Loading branch information
petrvecera committed Mar 29, 2024
1 parent c3f70d2 commit 36919ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const About: React.FC = () => {
{appVersion}
</Code>
</Group>
{latestVersion !== appVersion && (
{latestVersion !== appVersion && latestVersion !== undefined && (
<>
<Space h="xs" />
<Text component="p" size="sm" c={"red"}>
Expand Down

0 comments on commit 36919ff

Please sign in to comment.