Skip to content

Commit 0646f82

Browse files
Gaming32IMB11
authored andcommitted
Fix lint
1 parent ed65a7c commit 0646f82

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

apps/app-frontend/src/components/ui/UpdateModal.vue

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
>
88
<div class="flex flex-col gap-4">
99
<div class="max-w-[500px]">
10-
<div class="font-extrabold text-contrast text-xl mb-1">Modrinth App v{{ update!.version }}</div>
10+
<div class="font-extrabold text-contrast text-xl mb-1">
11+
Modrinth App v{{ update!.version }}
12+
</div>
1113
<template v-if="!downloadInProgress && !downloadError">
12-
<div class="mb-4 leading-tight">{{ formatMessage(messages.bodyVersion) }}</div>
13-
<div class="text-sm text-secondary mb-3">
14+
<div class="mb-4 leading-tight">{{ formatMessage(messages.bodyVersion) }}</div>
15+
<div class="text-sm text-secondary mb-3">
1416
{{ formatMessage(messages.downloadSize, { size: formatBytes(updateSize) }) }}
1517
</div>
1618
</template>
@@ -29,9 +31,7 @@
2931
<ButtonStyled color="brand">
3032
<button @click="installUpdateNow">
3133
<DownloadIcon />
32-
{{
33-
formatMessage(messages.tryAgain)
34-
}}
34+
{{ formatMessage(messages.tryAgain) }}
3535
</button>
3636
</ButtonStyled>
3737
<ButtonStyled>
@@ -74,13 +74,7 @@ import { defineMessages, useVIntl } from '@vintl/vintl'
7474
import { useTemplateRef, ref, computed } from 'vue'
7575
import { AppearingProgressBar, ButtonStyled, JoinedButtons } from '@modrinth/ui'
7676
import type { JoinedButtonAction } from '@modrinth/ui'
77-
import {
78-
ExternalIcon,
79-
DownloadIcon,
80-
RightArrowIcon,
81-
RedoIcon,
82-
ClipboardCopyIcon,
83-
} from '@modrinth/assets'
77+
import { ExternalIcon, DownloadIcon, RedoIcon, ClipboardCopyIcon } from '@modrinth/assets'
8478
import { enqueueUpdateForInstallation, getUpdateSize } from '@/helpers/utils'
8579
import { formatBytes } from '@modrinth/utils'
8680
import { handleError } from '@/store/notifications'

0 commit comments

Comments
 (0)