Skip to content

Commit

Permalink
remove placeholder select
Browse files Browse the repository at this point in the history
  • Loading branch information
hawkeye217 committed May 4, 2024
1 parent 1034897 commit e1e6d8d
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions web/src/components/settings/General.tsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
import Heading from "@/components/ui/heading";
import { Label } from "@/components/ui/label";
import {
Select,
SelectContent,
SelectGroup,
SelectItem,
SelectLabel,
SelectTrigger,
SelectValue,
} from "@/components/ui/select";
import { Switch } from "@/components/ui/switch";
import { useEffect } from "react";

Expand All @@ -24,22 +15,6 @@ export default function General() {
<Switch id="lowdata" checked={false} onCheckedChange={() => {}} />
<Label htmlFor="lowdata">Low Data Mode (this device only)</Label>
</div>

<div className="flex items-center space-x-2 mt-5">
<Select>
<SelectTrigger className="w-[180px]">
<SelectValue placeholder="Another General Option" />
</SelectTrigger>
<SelectContent>
<SelectGroup>
<SelectLabel>Live Mode</SelectLabel>
<SelectItem value="jsmpeg">JSMpeg</SelectItem>
<SelectItem value="mse">MSE</SelectItem>
<SelectItem value="webrtc">WebRTC</SelectItem>
</SelectGroup>
</SelectContent>
</Select>
</div>
</>
);
}

0 comments on commit e1e6d8d

Please sign in to comment.