We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8634857 commit 390d98eCopy full SHA for 390d98e
README.md
@@ -11,6 +11,7 @@ A ful-stack application to view information on the countries of the world. Based
11
* View a list of all countries
12
* Search for a country
13
* Filter countries by region
14
+* Sort countries ascending or descending order
15
* View more info about a country and its bordering countries
16
* Optional user authentication
17
* Logged in users can add countries to favourites
app/components/RegionSelect.tsx
@@ -8,7 +8,7 @@ import {
8
} from "@/components/ui/select";
9
10
type Props = {
- selectedRegion: string; // Make these props optional
+ selectedRegion: string;
setSelectedRegion: (region: string) => void;
uniqueRegions: string[];
};
0 commit comments