align templates with other elements

This commit is contained in:
HF 2024-02-05 12:20:04 +01:00
parent 9474688e8a
commit c2cd76f54d

View File

@ -96,7 +96,6 @@ const TemplateSettings = () => {
<div className="modaldivider" /> <div className="modaldivider" />
</div> </div>
<div className="content">
{list.map(({ {list.map(({
enabled, imageId, canvasId, title, x, y, width, height, enabled, imageId, canvasId, title, x, y, width, height,
}, index) => (editingIndices.includes(index) ? ( }, index) => (editingIndices.includes(index) ? (
@ -174,7 +173,6 @@ const TemplateSettings = () => {
templateLoader.importTemplates(evt.target.files?.[0]); templateLoader.importTemplates(evt.target.files?.[0]);
}} }}
/> />
</div>
</> </>
); );
}; };