We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b87d66 commit 967df3dCopy full SHA for 967df3d
src/lib/ui/thermostat/ClimatePreset.tsx
@@ -257,18 +257,16 @@ function PresetForm(props: PresetFormProps): JSX.Element {
257
)}
258
259
<div className='seam-climate-preset-buttons'>
260
- {
261
- deletable && (
262
- <Button
263
- type='button'
264
- variant='danger'
265
- disabled={loading}
266
- onClick={onDelete}
267
- >
268
- {t.delete}
269
- </Button>
270
- )
271
- }
+ {deletable && (
+ <Button
+ type='button'
+ variant='danger'
+ disabled={loading}
+ onClick={onDelete}
+ >
+ {t.delete}
+ </Button>
+ )}
272
273
<Button
274
type='submit'
0 commit comments