fix(ui): update spots list header title for consistency

Change header title from "Spot List" to "Spots" to improve UI consistency
and make the heading more concise.

Signed-off-by: Shekar Siri <sshekarsiri@gmail.com>
This commit is contained in:
Shekar Siri 2025-03-05 11:22:26 +01:00
parent ee4c5cf45d
commit e174a11466

View file

@ -49,7 +49,7 @@ const SpotsListHeader = observer(
return (
<div className={'flex items-center justify-between w-full'}>
<div className="flex gap-1 items-center">
<h1 className={'text-2xl capitalize mr-2'}>Spot List</h1>
<h1 className={'text-2xl capitalize mr-2'}>Spots</h1>
<ReloadButton buttonSize={'small'} onClick={onRefresh} iconSize={14} />
</div>