{description}
diff --git a/apps/web/components/ui/form/LocationSelect.tsx b/apps/web/components/ui/form/LocationSelect.tsx
index 4096ceec78..f81e11d225 100644
--- a/apps/web/components/ui/form/LocationSelect.tsx
+++ b/apps/web/components/ui/form/LocationSelect.tsx
@@ -3,6 +3,7 @@ import { components } from "react-select";
import type { EventLocationType } from "@calcom/app-store/locations";
import { classNames } from "@calcom/lib";
+import cx from "@calcom/lib/classNames";
import { Select } from "@calcom/ui";
export type LocationOption = {
@@ -19,10 +20,14 @@ export type GroupOptionType = GroupBase;
const OptionWithIcon = ({ icon, label }: { icon?: string; label: string }) => {
return (
- {/* TODO: figure out a way to invert icons when in dark mode. We can't just
- dark:invert due to google meet cal etc all breaking when we do this
- */}
- {icon && }
+ {icon && (
+
+ )}
{label}