diff --git a/.npmrc b/.npmrc deleted file mode 100644 index a864f7a..0000000 --- a/.npmrc +++ /dev/null @@ -1,2 +0,0 @@ -@rkheftan:registry=https://npm.pkg.github.com -//npm.pkg.github.com/:_authToken=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 \ No newline at end of file diff --git a/src/components/Layout/Header.tsx b/src/components/layout/Header.tsx similarity index 100% rename from src/components/Layout/Header.tsx rename to src/components/layout/Header.tsx diff --git a/src/components/Layout/Layout.tsx b/src/components/layout/Layout.tsx similarity index 100% rename from src/components/Layout/Layout.tsx rename to src/components/layout/Layout.tsx diff --git a/src/components/Layout/Toolbar.tsx b/src/components/layout/Toolbar.tsx similarity index 100% rename from src/components/Layout/Toolbar.tsx rename to src/components/layout/Toolbar.tsx diff --git a/src/components/Layout/buildNavItems.tsx b/src/components/layout/buildNavItems.tsx similarity index 100% rename from src/components/Layout/buildNavItems.tsx rename to src/components/layout/buildNavItems.tsx diff --git a/src/components/Layout/type.ts b/src/components/layout/type.ts similarity index 100% rename from src/components/Layout/type.ts rename to src/components/layout/type.ts diff --git a/src/features/profile/components/CountryCodeSelector.tsx b/src/features/profile/components/CountryCodeSelector.tsx index c965239..5796faa 100644 --- a/src/features/profile/components/CountryCodeSelector.tsx +++ b/src/features/profile/components/CountryCodeSelector.tsx @@ -163,7 +163,7 @@ export function CountryCodeSelector({ /> - + {filteredCountries.length === 0 ? ( @@ -176,35 +176,33 @@ export function CountryCodeSelector({ ( handleSelect(country)} - sx={{ - minHeight: '48px', - '&.Mui-selected': { - backgroundColor: 'action.selected', - }, - }} + sx={{ justifyContent: 'space-between' }} > - - + + + + - - + + {country.phone} )} - computeItemKey={(_, country) => country.code} + computeItemKey={(_, c) => c.code} /> )}