Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Global/Select/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const Select = ({
return (
<div className={`relative ${className}`}>
{label && <div className="mb-3 text-xs font-bold">{label}</div>}
<Listbox value={value} onChange={onChange}>
<Listbox value={value || undefined} onChange={onChange}>
{({ open }) => (
<>
<Listbox.Button
Expand Down
4 changes: 2 additions & 2 deletions src/config/underMaintenance.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ interface MaintenanceConfig {
}

const underMaintenanceConfig: MaintenanceConfig = {
enableFullMaintenance: false, // set to true to redirect all pages to /maintenance
enableMaintenanceBanner: false, // set to true to show maintenance banner on all pages
enableFullMaintenance: true, // set to true to redirect all pages to /maintenance
enableMaintenanceBanner: true, // set to true to show maintenance banner on all pages
}

export default underMaintenanceConfig
Loading