Skip to content

Commit 390d98e

Browse files
committed
Update README
1 parent 8634857 commit 390d98e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ A ful-stack application to view information on the countries of the world. Based
1111
* View a list of all countries
1212
* Search for a country
1313
* Filter countries by region
14+
* Sort countries ascending or descending order
1415
* View more info about a country and its bordering countries
1516
* Optional user authentication
1617
* Logged in users can add countries to favourites

app/components/RegionSelect.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
} from "@/components/ui/select";
99

1010
type Props = {
11-
selectedRegion: string; // Make these props optional
11+
selectedRegion: string;
1212
setSelectedRegion: (region: string) => void;
1313
uniqueRegions: string[];
1414
};

0 commit comments

Comments
 (0)