import { sanitize } from "@/backend/helpers/captions"; import { useSettings } from "@/state/settings"; export function Caption({ text }: { text?: string }) { const { captionSettings } = useSettings(); return ( ); }