diff --git a/pages/availability/index.tsx b/pages/availability/index.tsx index e0d4940b25..6a94f0e2b8 100644 --- a/pages/availability/index.tsx +++ b/pages/availability/index.tsx @@ -62,7 +62,7 @@ export function AvailabilityForm(props: inferQueryOutput<"viewer.availability">)
-
+

{t("something_doesnt_look_right")}

diff --git a/pages/settings/profile.tsx b/pages/settings/profile.tsx index 43bbcb41f8..10c23d266d 100644 --- a/pages/settings/profile.tsx +++ b/pages/settings/profile.tsx @@ -308,7 +308,7 @@ function SettingsView(props: ComponentProps & { localeProp: str value={selectedLanguage || props.localeProp} onChange={setSelectedLanguage} classNamePrefix="react-select" - className="block w-full mt-1 capitalize border border-gray-300 rounded-sm shadow-sm react-select-container focus:ring-neutral-500 focus:border-neutral-500 sm:text-sm" + className="block w-full mt-1 capitalize rounded-sm shadow-sm react-select-container focus:ring-neutral-500 focus:border-neutral-500 sm:text-sm" options={localeOptions} />
@@ -325,7 +325,7 @@ function SettingsView(props: ComponentProps & { localeProp: str value={selectedTimeZone} onChange={setSelectedTimeZone} classNamePrefix="react-select" - className="block w-full mt-1 border border-gray-300 rounded-sm shadow-sm react-select-container focus:ring-neutral-500 focus:border-neutral-500 sm:text-sm" + className="block w-full mt-1 rounded-sm shadow-sm react-select-container focus:ring-neutral-500 focus:border-neutral-500 sm:text-sm" />
@@ -341,7 +341,7 @@ function SettingsView(props: ComponentProps & { localeProp: str value={selectedWeekStartDay} onChange={setSelectedWeekStartDay} classNamePrefix="react-select" - className="block w-full mt-1 capitalize border border-gray-300 rounded-sm shadow-sm react-select-container focus:ring-neutral-500 focus:border-neutral-500 sm:text-sm" + className="block w-full mt-1 capitalize rounded-sm shadow-sm react-select-container focus:ring-neutral-500 focus:border-neutral-500 sm:text-sm" options={[ { value: "Sunday", label: nameOfDay(props.localeProp, 0) }, { value: "Monday", label: nameOfDay(props.localeProp, 1) }, @@ -360,7 +360,7 @@ function SettingsView(props: ComponentProps & { localeProp: str defaultValue={selectedTheme || themeOptions[0]} value={selectedTheme || themeOptions[0]} onChange={setSelectedTheme} - className="shadow-sm | { value: string } focus:ring-neutral-500 focus:border-neutral-500 mt-1 block w-full sm:text-sm border-gray-300 rounded-sm" + className="shadow-sm | { value: string } focus:ring-neutral-500 focus:border-neutral-500 mt-1 block w-full sm:text-sm rounded-sm" options={themeOptions} />