From 953e6ec7d86a36c16a3e6b520b4aa711e8e702e6 Mon Sep 17 00:00:00 2001 From: Jamie Pine Date: Fri, 30 Jan 2026 16:16:17 -0800 Subject: [PATCH] Refactor import order and fix typo in SampleList component - Rearranged import statements for consistency and clarity. - Corrected the spelling of "interchangeable" in the note about sample quality. --- app/src/components/VoiceProfiles/SampleList.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/components/VoiceProfiles/SampleList.tsx b/app/src/components/VoiceProfiles/SampleList.tsx index b63dfe07..4c5b995d 100644 --- a/app/src/components/VoiceProfiles/SampleList.tsx +++ b/app/src/components/VoiceProfiles/SampleList.tsx @@ -1,4 +1,4 @@ -import { Plus, Trash2, Play, Edit, Check, X, Volume2, Pause } from 'lucide-react'; +import { Check, Edit, Pause, Play, Plus, Trash2, Volume2, X } from 'lucide-react'; import { useEffect, useRef, useState } from 'react'; import { Button } from '@/components/ui/button'; import { CircleButton } from '@/components/ui/circle-button'; @@ -301,8 +301,8 @@ export function SampleList({ profileId }: SampleListProps) {

Note: A single 30-second sample is the sweet spot. Quality may decrease with multiple - samples. In a future update samples might be interchangable and tagged for varying styles of - the same voice. + samples. In a future update samples might be interchangeable and tagged for varying styles + of the same voice.