Skip to content

Commit cc6cdcc

Browse files
extension: frontend: Update API to reflect changes in the external driver support
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
1 parent a4c089c commit cc6cdcc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

extension/frontend/src/composables/useApi.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1178,7 +1178,7 @@ export function useNotifications() {
11781178
// ── Storage migration status ────────────────────────────────────────
11791179

11801180
export interface StorageMigrationStatus {
1181-
state: 'idle' | 'checking' | 'mounting' | 'migrating' | 'linking' | 'done' | 'skipped' | 'error'
1181+
state: 'idle' | 'checking' | 'mounting' | 'configuring' | 'done' | 'skipped' | 'error'
11821182
message: string
11831183
error: string
11841184
}
@@ -1196,7 +1196,7 @@ export function useStorageMigration() {
11961196

11971197
const isActive = computed(() => {
11981198
if (!status.value) return false
1199-
return ['checking', 'mounting', 'migrating', 'linking'].includes(status.value.state)
1199+
return ['checking', 'mounting', 'configuring'].includes(status.value.state)
12001200
})
12011201

12021202
const isError = computed(() => status.value?.state === 'error')

0 commit comments

Comments
 (0)