Skip to content

Commit caf8e13

Browse files
Copilotzurdi15
andauthored
fix: fix prettier formatting in FilesTab.vue (break long router.push line)
Co-authored-by: zurdi15 <34356590+zurdi15@users.noreply.github.com>
1 parent 0f8a9b6 commit caf8e13

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

frontend/src/v2/components/GameDetails/FilesTab/FilesTab.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,10 @@ async function deleteSelectedFiles() {
537537
const platformSlug = route.params["platform"] as string | undefined;
538538
if (romsStore.currentRom && romsStore.currentRom.files?.length === 0) {
539539
if (platformSlug) {
540-
await router.push({ name: "platform", params: { platform: platformSlug } });
540+
await router.push({
541+
name: "platform",
542+
params: { platform: platformSlug },
543+
});
541544
} else {
542545
await router.push({ name: "home" });
543546
}

0 commit comments

Comments
 (0)