Skip to content

Commit

Permalink
Merge pull request #31 from commerceblock/fix/release-issues
Browse files Browse the repository at this point in the history
Fix/release issues
  • Loading branch information
rajkadir authored Mar 4, 2024
2 parents 9536953 + 48b24b7 commit 0a485c7
Show file tree
Hide file tree
Showing 56 changed files with 6 additions and 3,296 deletions.
6 changes: 6 additions & 0 deletions clients/react-app/src/main/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
const { app, BrowserWindow, dialog, ipcMain, shell, nativeTheme, session } = require('electron')
import { Tray, nativeImage } from 'electron'
import appIcon from '../../resources/icon.png?asset'

import { join } from 'path'
import { electronApp, optimizer, is } from '@electron-toolkit/utils'
import icon from '../../resources/icon.png?asset'
Expand All @@ -25,6 +28,7 @@ function createWindow() {
width: 900,
height: 670,
show: true,
icon: appIcon,
autoHideMenuBar: true,
...(process.platform === 'linux' ? { icon } : {}),
webPreferences: {
Expand Down Expand Up @@ -62,6 +66,8 @@ app.whenReady().then(async () => {
.then((name) => console.log(`Added Extension: ${name}`))
.catch((err) => console.log('An error occurred: ', err))

let tray = new Tray(nativeImage.createFromPath(appIcon))

let db

try {
Expand Down

This file was deleted.

This file was deleted.

163 changes: 0 additions & 163 deletions clients/react-app/src/renderer/src/components/Backup/CoinItem.jsx

This file was deleted.

Loading

0 comments on commit 0a485c7

Please sign in to comment.