From 25e843236d690ade4007bfd8b68caac54a78f3c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Tue, 18 Nov 2025 07:52:24 +0100 Subject: [PATCH] fix: add missing Plus icon import in Track component --- components/tracks/Track.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/tracks/Track.tsx b/components/tracks/Track.tsx index dc5153f..3487918 100644 --- a/components/tracks/Track.tsx +++ b/components/tracks/Track.tsx @@ -1,7 +1,7 @@ 'use client'; import * as React from 'react'; -import { Volume2, VolumeX, Headphones, Trash2, ChevronDown, ChevronRight, CircleArrowOutUpRight, Upload } from 'lucide-react'; +import { Volume2, VolumeX, Headphones, Trash2, ChevronDown, ChevronRight, CircleArrowOutUpRight, Upload, Plus } from 'lucide-react'; import type { Track as TrackType } from '@/types/track'; import { Button } from '@/components/ui/Button'; import { Slider } from '@/components/ui/Slider';