Skip to content

Commit 2db6842

Browse files
committed
biome fmt
1 parent 3105c69 commit 2db6842

File tree

1 file changed

+10
-10
lines changed
  • apps/desktop/src/routes/screenshot-editor

1 file changed

+10
-10
lines changed

apps/desktop/src/routes/screenshot-editor/Editor.tsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -215,17 +215,17 @@ function Dialogs() {
215215
const existingCrop = cropDialog().currentCrop;
216216
const initialBounds = existingCrop
217217
? {
218-
x: existingCrop.position.x,
219-
y: existingCrop.position.y,
220-
width: existingCrop.size.x,
221-
height: existingCrop.size.y,
222-
}
218+
x: existingCrop.position.x,
219+
y: existingCrop.position.y,
220+
width: existingCrop.size.x,
221+
height: existingCrop.size.y,
222+
}
223223
: {
224-
x: 0,
225-
y: 0,
226-
width: originalSize.x,
227-
height: originalSize.y,
228-
};
224+
x: 0,
225+
y: 0,
226+
width: originalSize.x,
227+
height: originalSize.y,
228+
};
229229

230230
const [snapToRatio, setSnapToRatioEnabled] = makePersisted(
231231
createSignal(true),

0 commit comments

Comments
 (0)