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.
1 parent 173cfbb commit 36d8e02Copy full SHA for 36d8e02
app/publications/page.tsx
@@ -21,7 +21,7 @@ export default function PublicationsPage() {
21
const searchParams = useSearchParams();
22
23
const direction = searchParams.get("tag");
24
- const direction_tag = Tag[direction as keyof typeof Tag];
+ const direction_tag = direction as Tag;
25
let publications_filtered = publications;
26
27
if (direction !== null) {
0 commit comments