Skip to content

Commit

Permalink
fix spacing when trash is disable
Browse files Browse the repository at this point in the history
  • Loading branch information
alextran1502 committed Oct 21, 2024
1 parent 0f47d43 commit 58ff74a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobile/lib/pages/library/library.page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class LibraryPage extends ConsumerWidget {
icon: Icons.link_outlined,
label: 'shared_links'.tr(),
),
const SizedBox(width: 8),
SizedBox(width: trashEnabled ? 8 : 0),
trashEnabled
? ActionButton(
onPressed: () => context.pushRoute(const TrashRoute()),
Expand Down

0 comments on commit 58ff74a

Please sign in to comment.