Skip to content

Commit

Permalink
Updated condition for null values
Browse files Browse the repository at this point in the history
  • Loading branch information
ratheesh-aot committed May 29, 2024
1 parent e70547b commit 25477fd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions met-web/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ const App = () => {
logoUrl: tenant.logo_url ?? '',
basename: appBaseName,
title: tenant.title,
contact_email: tenant.contact_email,
contact_name: tenant.contact_name,
description: tenant.description,
contact_email: tenant.contact_email ?? '',
contact_name: tenant.contact_name ?? '',
description: tenant.description ?? '',
short_name: tenant.short_name,
logo_description: tenant.logo_description,
logo_credit: tenant.logo_credit,
logo_description: tenant.logo_description ?? '',
logo_credit: tenant.logo_credit ?? '',
}),
);
} catch {
Expand Down

0 comments on commit 25477fd

Please sign in to comment.