Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
undera committed Jul 12, 2023
1 parent 89b5f23 commit 6a447c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/frontend/src/components/AppStatusNotifier.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function AppStatusNotifier() {
return (<LinearProgress/>);
}

let versionStatus = (<Typography variant="body2" sx={{fontSize: "0.75rem"}} className="pl-4 pt-2 text-gray-500">komoplane version: {status.CurVer}</Typography>)
const versionStatus = (<Typography variant="body2" sx={{fontSize: "0.75rem"}} className="pl-4 pt-2 text-gray-500">komoplane version: {status.CurVer}</Typography>)

let upgradeStatus = (<>{versionStatus}</>)
if (isNewerVersion(status.CurVer, status.LatestVer)) {
Expand Down

0 comments on commit 6a447c1

Please sign in to comment.