Skip to content

Commit 7d5dfd5

Browse files
jdamcdclaude
andcommitted
UI copy tweaks: sentence case labels, rename date filter periods
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent f5ca4f3 commit 7d5dfd5

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

src/components/AddVisitForm.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ export function AddVisitForm({ onAdd, onCancel }: AddVisitFormProps) {
5353
setCountryCode('');
5454
setSearchTerm('');
5555
}}
56-
className="text-gray-500 hover:text-gray-700 dark:text-gray-400 dark:hover:text-gray-200"
56+
className="text-blue-500 hover:text-blue-700 dark:text-blue-400 dark:hover:text-blue-300 px-2 text-sm"
5757
>
58-
Change
58+
Edit
5959
</button>
6060
</div>
6161
) : (

src/components/DateRangeFilter.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ export function DateRangeFilter({ dateRange, onChange }: DateRangeFilterProps) {
1414
const [showCustom, setShowCustom] = useState(false);
1515

1616
const presets: { value: PresetOption; label: string }[] = [
17-
{ value: '1y', label: '1 Year' },
18-
{ value: '5y', label: '5 Years' },
19-
{ value: 'all', label: 'All Time' },
17+
{ value: '1y', label: '1 year' },
18+
{ value: '5y', label: '5 years' },
19+
{ value: 'all', label: 'All' },
2020
{ value: 'custom', label: 'Custom' },
2121
];
2222

0 commit comments

Comments
 (0)