From 2db54bc1ce20496bfbcd1b5282c8b4823ce5bb25 Mon Sep 17 00:00:00 2001 From: Manav Rathi Date: Wed, 15 Jan 2025 18:18:49 +0530 Subject: [PATCH] Conv --- web/apps/photos/src/components/DropdownInput.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/web/apps/photos/src/components/DropdownInput.tsx b/web/apps/photos/src/components/DropdownInput.tsx index 2557af5a0d..9b7a83abff 100644 --- a/web/apps/photos/src/components/DropdownInput.tsx +++ b/web/apps/photos/src/components/DropdownInput.tsx @@ -108,13 +108,9 @@ export default function DropdownInput({ key={option.value} divider={index !== options.length - 1} value={option.value} - sx={(theme) => ({ - px: "16px", - py: "14px", - color: theme.palette.primary.main, - })} + sx={{ px: "16px", py: "14px" }} > - {option.label} + {option.label} ))}