Remove unused .gitkeep files and adjust ProfileList component padding

- Deleted .gitkeep files from Generation, ServerSettings, VoiceProfiles, and hooks directories as they are no longer necessary.
- Updated the ProfileList component to increase bottom padding for improved layout consistency.
This commit is contained in:
Jamie Pine
2026-01-27 13:46:08 -08:00
parent 3ce7498495
commit ac08c4fcf4
5 changed files with 1 additions and 5 deletions
-1
View File
@@ -1 +0,0 @@
# Voice generation components
@@ -1 +0,0 @@
# Server settings and connection components
@@ -1 +0,0 @@
# Voice profile management components
@@ -109,7 +109,7 @@ export function ProfileList() {
</CardContent>
</Card>
) : (
<div className="grid gap-4 grid-cols-3 auto-rows-auto p-1">
<div className="grid gap-4 grid-cols-3 auto-rows-auto p-1 pb-[150px]">
{allProfiles.map((profile) => (
<ProfileCard key={profile.id} profile={profile} />
))}
-1
View File
@@ -1 +0,0 @@
# React Query hooks will be placed here