feat: update technical documentation and remove unnecessary logout icon from profile screen

This commit is contained in:
Nils-Johan Gynther
2026-04-24 08:17:48 +02:00
parent 2781b29f5a
commit 931336f048
4 changed files with 34 additions and 9 deletions
@@ -96,13 +96,7 @@ class _ProfileScreenState extends ConsumerState<ProfileScreen> {
return Scaffold(
appBar: AppBar(
title: const Text('Profil'),
actions: [
IconButton(
onPressed: _logout,
icon: const Icon(Icons.logout),
tooltip: 'Logga ut',
),
],
actions: [], // Utloggningsikonen tas bort här eftersom den redan finns i AppShell
),
body: _isLoading
? const Center(child: CircularProgressIndicator())