1
0
mirror of https://github.com/immich-app/immich.git synced 2025-07-15 07:14:42 +02:00

chore(mobile): Add const linter (#14447)

This commit is contained in:
Alex
2024-12-02 09:33:44 -06:00
committed by GitHub
parent 4eb7758f56
commit 1bb6926b5e
14 changed files with 39 additions and 34 deletions

View File

@ -143,9 +143,9 @@ class ImmichAppBarDialog extends HookConsumerWidget {
);
},
trailing: isLoggingOut.value
? SizedBox.square(
? const SizedBox.square(
dimension: 20,
child: const CircularProgressIndicator(strokeWidth: 2),
child: CircularProgressIndicator(strokeWidth: 2),
)
: null,
);