Use normal separator

Co-authored-by: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com>
This commit is contained in:
Otto 2026-03-20 20:49:23 +02:00 committed by GitHub
parent 9706bcbb2e
commit 738197b184
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,7 +15,7 @@ import {
PopoverTrigger, PopoverTrigger,
} from "@/components/ui/popover"; } from "@/components/ui/popover";
import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group"; import { RadioGroup, RadioGroupItem } from "@/components/ui/radio-group";
import { SelectSeparator } from "@/components/ui/select"; import { Separator } from "@/components/ui/separator";
import { useFormattedTimestamp } from "@/hooks/use-date-utils"; import { useFormattedTimestamp } from "@/hooks/use-date-utils";
import { FrigateConfig } from "@/types/frigateConfig"; import { FrigateConfig } from "@/types/frigateConfig";
import { getUTCOffset } from "@/utils/dateUtil"; import { getUTCOffset } from "@/utils/dateUtil";
@ -148,7 +148,7 @@ export function ShareTimestampContent({
</div> </div>
</div> </div>
{isDesktop && <SelectSeparator className="my-4 bg-secondary" />} {isDesktop && <Separator className="my-4 bg-secondary" />}
<RadioGroup <RadioGroup
className="mt-4 flex flex-col gap-4" className="mt-4 flex flex-col gap-4"
@ -201,7 +201,7 @@ export function ShareTimestampContent({
</div> </div>
</RadioGroup> </RadioGroup>
{isDesktop && <SelectSeparator className="my-4 bg-secondary" />} {isDesktop && <Separator className="my-4 bg-secondary" />}
<DialogFooter <DialogFooter
className={isDesktop ? "mt-4" : "mt-4 flex flex-col-reverse gap-4"} className={isDesktop ? "mt-4" : "mt-4 flex flex-col-reverse gap-4"}