File tree Expand file tree Collapse file tree
extension/frontend/src/composables Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1178,7 +1178,7 @@ export function useNotifications() {
11781178// ── Storage migration status ────────────────────────────────────────
11791179
11801180export 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' )
You can’t perform that action at this time.
0 commit comments