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.
This commit is contained in:
Jamie Pine
2026-01-28 22:28:01 -08:00
parent 2b4fbe5173
commit cc37e04221
2 changed files with 2 additions and 2 deletions
@@ -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 {