Refactor import statements in SampleUpload component for improved readability

- Adjusted the order of imports in SampleUpload.tsx to follow a more conventional structure, enhancing code organization.
This commit is contained in:
Jamie Pine
2026-01-28 14:38:31 -08:00
parent 7208f51eee
commit 615bd188a0
@@ -1,6 +1,6 @@
import { zodResolver } from '@hookform/resolvers/zod';
import { Mic, Monitor, Upload } from 'lucide-react';
import { useState, useEffect } from 'react';
import { useEffect, useState } from 'react';
import { useForm } from 'react-hook-form';
import * as z from 'zod';
import { Button } from '@/components/ui/button';