feat(app): typo

This commit is contained in:
dextmorgn
2025-11-09 14:28:00 +01:00
parent aecec70408
commit da30052bfd
3 changed files with 3 additions and 3 deletions
@@ -345,7 +345,7 @@ export const NodeEditorModal: React.FC = () => {
) : (
<Save className="h-4 w-4" />
)}
{isSaving ? 'Saving...' : 'Save Changes'}
{isSaving ? 'Saving...' : 'Save changes'}
</Button>
</div>
</div>
@@ -594,7 +594,7 @@ export default function GlobalSettings() {
onClick={handleSubmit}
className="flex-1"
>
{updateMutation.isPending ? 'Saving...' : 'Save Changes'}
{updateMutation.isPending ? 'Saving...' : 'Save changes'}
</Button>
</div>
</div>
@@ -250,7 +250,7 @@ function CustomTypeEditor() {
disabled={createMutation.isPending || updateMutation.isPending}
>
<Save className="w-4 h-4 mr-2" />
{isNew ? 'Create' : 'Save Changes'}
{isNew ? 'Create' : 'Save changes'}
</Button>
</div>
</div>