We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 481f0e8 + 909a5e2 commit da69d8bCopy full SHA for da69d8b
.changeset/cuddly-avocados-scream.md
@@ -0,0 +1,5 @@
1
+---
2
+"go-web-app": patch
3
4
+
5
+Fix Appeals table for Africa Region
app/src/components/domain/AppealsTable/index.tsx
@@ -225,8 +225,8 @@ function AppealsTable(props: Props) {
225
226
return {
227
...baseQuery,
228
- country: countryId ? [countryId] : undefined,
229
- region: regionId ? [regionId] : undefined,
+ country: isDefined(countryId) ? [countryId] : undefined,
+ region: isDefined(regionId) ? [regionId] : undefined,
230
};
231
},
232
[
0 commit comments