Skip to content

Commit

Permalink
Merge to prod 10/24/23 (#223)
Browse files Browse the repository at this point in the history
* Null Filter Hotfix
  • Loading branch information
Lucas-Dunker authored Oct 24, 2023
1 parent b07c080 commit f726821
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/ResultsPage/ResultsLoader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function ResultsLoader({
(result) =>
result !== null &&
result !== undefined &&
result.class.subject !== 'NULL'
result?.class?.subject !== 'NULL'
)
.map((result) => {
return (
Expand Down

1 comment on commit f726821

@vercel
Copy link

@vercel vercel bot commented on f726821 Oct 24, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

searchneu – ./

searchneu-git-prod-sandboxneu.vercel.app
searchneu-sandboxneu.vercel.app
searchneu.com

Please sign in to comment.