Skip to content
Merged
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 app/dashboard/onboarding/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function OnboardingPage() {
{
id: 'whitelist-email',
title: 'Add MultiFamilyOS to Your Safe Senders',
description: 'Send a quick email to info@multifamilyos.ai from the email address you used to log in. This ensures our support messages, property alerts, and system notifications reach your inbox instead of junk mail.',
description: 'Follow the instructions in the Email Set Up Guide at the top of the page before doing this. Send a quick email to info@multifamilyos.ai from the email address you used to log in. This ensures our support messages, property alerts, and system notifications reach your inbox instead of junk mail.',
day: 1,
icon: <User className="h-5 w-5" />,
completed: false,
Expand Down
4 changes: 4 additions & 0 deletions app/discover/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1946,6 +1946,7 @@ function DiscoverPageContent() {
<input
type="number"
placeholder="Min"
min="0"
value={filters.units_min}
onChange={(e) => updateFilter('units_min', e.target.value)}
className="w-16 px-2 py-2 border border-gray-300 rounded-md text-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500"
Expand All @@ -1954,6 +1955,7 @@ function DiscoverPageContent() {
<input
type="number"
placeholder="Max"
min="0"
value={filters.units_max}
onChange={(e) => updateFilter('units_max', e.target.value)}
className="w-16 px-2 py-2 border border-gray-300 rounded-md text-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500"
Expand Down Expand Up @@ -2987,6 +2989,7 @@ function DiscoverPageContent() {
<input
type="number"
placeholder="Min"
min="0"
value={filters.units_min}
onChange={(e) => updateFilter('units_min', e.target.value)}
className="w-16 px-2 py-2 border border-gray-300 rounded-md text-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500"
Expand All @@ -2995,6 +2998,7 @@ function DiscoverPageContent() {
<input
type="number"
placeholder="Max"
min="0"
value={filters.units_max}
onChange={(e) => updateFilter('units_max', e.target.value)}
className="w-16 px-2 py-2 border border-gray-300 rounded-md text-sm focus:ring-2 focus:ring-blue-500 focus:border-blue-500"
Expand Down