fix(ui): missing translation on node footer

This commit is contained in:
psychedelicious
2024-09-19 16:13:18 +10:00
parent bd7238e434
commit 7fe2aa751a
2 changed files with 3 additions and 2 deletions

View File

@@ -30,7 +30,7 @@ const SaveToGalleryCheckbox = ({ nodeId }: { nodeId: string }) => {
return (
<FormControl className="nopan">
<FormLabel>{t('hotkeys.saveToGallery.title')} </FormLabel>
<FormLabel>{t('nodes.saveToGallery')} </FormLabel>
<Checkbox onChange={handleChange} isChecked={!isIntermediate} />
</FormControl>
);