Skip to content

Commit 01d39f5

Browse files
committed
fixed unmerged files
1 parent 5e3d31d commit 01d39f5

File tree

2 files changed

+7
-17
lines changed

2 files changed

+7
-17
lines changed

main.js

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const path = require('path');
1+
const path = require("path");
22

33
const {
44
app,
@@ -10,11 +10,7 @@ const {
1010
} = require("electron");
1111

1212
// Uncomment below for hot reloading during development
13-
<<<<<<< HEAD
14-
require("electron-reload")(__dirname);
15-
=======
1613
// require('electron-reload')(__dirname);
17-
>>>>>>> 11e0643d114b6c294dc2b66c3fd4727ffb173825
1814

1915
// const isDev = true;
2016
const isDev =
@@ -77,11 +73,11 @@ const createWindow = () => {
7773
"node-Integration": false
7874
},
7975
show: false,
80-
icon: path.join(__dirname, '/src/public/icons/mac/icon.icns'),
76+
icon: path.join(__dirname, "/src/public/icons/mac/icon.icns"),
8177
win: {
82-
icon: path.join(__dirname, '/src/public/icons/win/icon.ico'),
83-
target: ['portable'],
84-
},
78+
icon: path.join(__dirname, "/src/public/icons/win/icon.ico"),
79+
target: ["portable"]
80+
}
8581
});
8682

8783
// and load the index.html of the app.

src/components/TransformerComponent.tsx

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
1-
<<<<<<< HEAD
21
import React, { Component } from "react";
32
import { Transformer } from "react-konva";
43
import { ComponentInt, ComponentsInt, ChildInt } from "../utils/interfaces";
5-
=======
6-
import React, { Component } from 'react';
7-
import { Transformer } from 'react-konva';
8-
import { ChildInt } from '../utils/interfaces.ts';
9-
>>>>>>> 11e0643d114b6c294dc2b66c3fd4727ffb173825
104

115
interface PropsInt {
126
focusChild: ChildInt;
@@ -42,9 +36,9 @@ export default class TransformerComponent extends Component<PropsInt> {
4236
render() {
4337
return (
4438
<Transformer
45-
className={'Transformer'}
39+
className={"Transformer"}
4640
rotateEnabled={false}
47-
ref={(node) => {
41+
ref={node => {
4842
this.transformer = node;
4943
}}
5044
borderEnabled={false}

0 commit comments

Comments
 (0)