From cc37e042219f2947a03fd5db55b50648496893b1 Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Wed, 28 Jan 2026 22:28:01 -0800 Subject: [PATCH] Refactor HistoryTable and SampleList components for improved code consistency - Cleaned up formatting in HistoryTable for better readability. - Adjusted import statements in SampleList to maintain consistent structure. --- app/src/components/History/HistoryTable.tsx | 2 +- app/src/components/VoiceProfiles/SampleList.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/components/History/HistoryTable.tsx b/app/src/components/History/HistoryTable.tsx index 418546b5..bfb27edd 100644 --- a/app/src/components/History/HistoryTable.tsx +++ b/app/src/components/History/HistoryTable.tsx @@ -233,7 +233,7 @@ export function HistoryTable() { {/* Far right - Ellipsis actions */} -
e.stopPropagation()} onClick={(e) => e.stopPropagation()} diff --git a/app/src/components/VoiceProfiles/SampleList.tsx b/app/src/components/VoiceProfiles/SampleList.tsx index 6dad3325..8edf1764 100644 --- a/app/src/components/VoiceProfiles/SampleList.tsx +++ b/app/src/components/VoiceProfiles/SampleList.tsx @@ -1,9 +1,9 @@ import { Plus, Trash2, Play } from 'lucide-react'; import { useState } from 'react'; import { Button } from '@/components/ui/button'; +import { apiClient } from '@/lib/api/client'; import { useDeleteSample, useProfileSamples } from '@/lib/hooks/useProfiles'; import { usePlayerStore } from '@/stores/playerStore'; -import { apiClient } from '@/lib/api/client'; import { SampleUpload } from './SampleUpload'; interface SampleListProps {