♻️ Move feedback alert and update biome config

This commit is contained in:
Luke Vella 2025-05-07 15:08:51 +01:00
parent 453cb2752b
commit 758422e097
No known key found for this signature in database
GPG key ID: 469CAD687F0D784C
2 changed files with 7 additions and 4 deletions

View file

@ -42,6 +42,9 @@ export default async function Page(props: { params: Promise<Params> }) {
</PageDescription>
</PageHeader>
<PageContent className="space-y-8">
<IfCloudHosted>
<FeedbackAlert />
</IfCloudHosted>
<div className="space-y-4">
<h2 className="text-muted-foreground text-sm">
<Trans i18nKey="homeActionsTitle" defaults="Actions" />
@ -57,9 +60,6 @@ export default async function Page(props: { params: Promise<Params> }) {
</Tile>
</TileGrid>
</div>
<IfCloudHosted>
<FeedbackAlert />
</IfCloudHosted>
<div className="space-y-4">
<h2 className="text-muted-foreground text-sm">
<Trans i18nKey="homeNavTitle" defaults="Navigation" />

View file

@ -11,7 +11,10 @@
"noUselessElse": "off"
},
"correctness": {
"noUnusedImports": "error"
"noUnusedImports": {
"level": "error",
"fix": "unsafe"
}
}
}
},