Skip to content

Commit 2996897

Browse files
committed
lint fix
1 parent e3b797a commit 2996897

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/features/layers/layersSlice.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,11 @@ export const selectLayersForExport = createSelector(selectState, (state) => {
576576
const layer = selectLayerById(state, id)
577577

578578
if (layer.type !== "fancyText") return true
579-
return selectFontLoaded(state, layer.fancyFont, layer.fancyFontWeight || "Regular")
579+
return selectFontLoaded(
580+
state,
581+
layer.fancyFont,
582+
layer.fancyFontWeight || "Regular",
583+
)
580584
})
581585

582586
if (!allFontsReady) {

0 commit comments

Comments
 (0)