Fixes for API logo issues
Some checks failed
ci/woodpecker/push/ci Pipeline failed
ci/woodpecker/push/deploy unknown status

This commit is contained in:
2026-02-07 17:27:36 -03:00
parent 309b0c618f
commit 1299fc4dd3
4 changed files with 13 additions and 16 deletions

View File

@@ -1020,19 +1020,7 @@ export function Editor({ id }: EditorProps) {
updateProject({ recipeJson: JSON.stringify(r) });
}}
/>
<Select
label="Shape"
data={[
{ value: 'square', label: 'Square' },
{ value: 'circle', label: 'Circle' },
]}
value={recipe.shape ?? 'square'}
onChange={(v) => {
const r = { ...recipe };
r.shape = (v as 'square' | 'circle') ?? 'square';
updateProject({ recipeJson: JSON.stringify(r) });
}}
/>
{/* Shape select removed - circle shape has rendering issues in qr-code-styling library */}
<Group grow>
<NumberInput
label="Margin"