Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
danemadsen committed Aug 1, 2024
1 parent c52f360 commit 9748c0d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lib/ui/desktop/side_panels/sessions_panel.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import 'package:flutter/material.dart';
import 'package:maid/ui/shared/buttons/clear_sessions_button.dart';
import 'package:maid/ui/shared/buttons/new_session_button.dart';
import 'package:maid/ui/shared/views/sessions_list_view.dart';

class SessionsPanel extends StatelessWidget {
Expand All @@ -23,7 +22,8 @@ class SessionsPanel extends StatelessWidget {
return const Column(
children: [
Expanded(child: SessionsListView()),
ClearSessionsButton()
ClearSessionsButton(),
SizedBox(height: 10)
]
);
}
Expand Down
1 change: 0 additions & 1 deletion lib/ui/mobile/layout/home_drawer.dart
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ class HomeDrawer extends StatelessWidget {
),
const ClearSessionsButton(),
Divider(
height: 0.0,
color: Theme.of(context).colorScheme.primary,
),
const SizedBox(height: 5.0),
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: maid
description: A cross-platform Flutter app for interfacing with GGUF / Llama models.
publish_to: 'none'

version: 1.2.9+1728
version: 1.3.0+1753

environment:
sdk: '>=3.0.0 <4.0.0'
Expand Down

0 comments on commit 9748c0d

Please sign in to comment.