impr(settings): clarified 'reset settings' wording (@SamLonneman) (#6717)

### Description

**`impr`** - Clarified description for "Reset Settings" feature,
emphasizing that in addition to tags, settings presets are also
preserved.

**`refactor`** - the unused type `PresetName` was misspelled as
`PresentName`.
This commit is contained in:
Sam Lonneman 2025-07-15 07:35:21 -05:00 committed by GitHub
parent 3f678932f8
commit 06f6d0ab53
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -1808,7 +1808,8 @@
</button>
</div>
<div class="text">
Resets settings to the default (but doesn't touch your tags).
Resets settings to the default (but doesn't touch your tags and
presets).
<br />
<span class="red">You can't undo this action!</span>
</div>

View file

@ -10,7 +10,7 @@ export const PresetNameSchema = z
.string()
.regex(/^[0-9a-zA-Z_-]+$/)
.max(16);
export type PresentName = z.infer<typeof PresetNameSchema>;
export type PresetName = z.infer<typeof PresetNameSchema>;
export const PresetTypeSchema = z.enum(["full", "partial"]);
export type PresetType = z.infer<typeof PresetTypeSchema>;