Skip to content

Commit

Permalink
minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
ahqsoftwares committed Jul 26, 2022
1 parent de251ef commit 2b65ba5
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 5 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ahq-store-tauri",
"version": "0.1.4",
"version": "0.1.5",
"private": true,
"license": "ISC",
"dependencies": {
Expand All @@ -14,6 +14,7 @@
"@types/react-dom": "^18.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.4.0",
"react-scripts": "5.0.1",
"typescript": "^4.4.2",
"web-vitals": "^2.1.0"
Expand Down Expand Up @@ -48,4 +49,4 @@
"@tauri-apps/cli": "^1.0.5",
"cross-env": "^7.0.3"
}
}
}
2 changes: 1 addition & 1 deletion src/App.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from 'react';
import { render, screen } from '@testing-library/react';
import App from './App';
import App from './config/App';

test('renders learn react link', () => {
render(<App />);
Expand Down
3 changes: 3 additions & 0 deletions src/app/Nav.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export default function nav() {

}
File renamed without changes
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import './index.css';
import App from './App';
import App from './config/App';
import reportWebVitals from './reportWebVitals';
import { isPermissionGranted, requestPermission, sendNotification } from '@tauri-apps/api/notification';

Expand All @@ -13,7 +13,7 @@ import { isPermissionGranted, requestPermission, sendNotification } from '@tauri
permissionGranted = permission === 'granted';
}
if (permissionGranted) {
sendNotification({ title: 'Warning', body: 'AHQ Store is under maintenance'});
sendNotification({ title: 'Development Build', body: 'Not for consumer use'});
}
})()

Expand Down
5 changes: 5 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7303,6 +7303,11 @@ react-error-overlay@^6.0.11:
resolved "https://registry.yarnpkg.com/react-error-overlay/-/react-error-overlay-6.0.11.tgz#92835de5841c5cf08ba00ddd2d677b6d17ff9adb"
integrity sha512-/6UZ2qgEyH2aqzYZgQPxEnz33NJ2gNsnHA2o5+o4wW9bLM/JYQitNP9xPhsXwC08hMMovfGe/8retsdDsczPRg==

react-icons@^4.4.0:
version "4.4.0"
resolved "https://registry.yarnpkg.com/react-icons/-/react-icons-4.4.0.tgz#a13a8a20c254854e1ec9aecef28a95cdf24ef703"
integrity sha512-fSbvHeVYo/B5/L4VhB7sBA1i2tS8MkT0Hb9t2H1AVPkwGfVHLJCqyr2Py9dKMxsyM63Eng1GkdZfbWj+Fmv8Rg==

react-is@^16.13.1:
version "16.13.1"
resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
Expand Down

0 comments on commit 2b65ba5

Please sign in to comment.