Skip to content

Commit c32dbb3

Browse files
format
1 parent e0bf884 commit c32dbb3

5 files changed

Lines changed: 36 additions & 47 deletions

File tree

electron-builder.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ asarUnpack:
2525
win:
2626
executableName: api-bolt
2727
icon: "build/icons/win/icon.ico"
28-
target:
28+
target:
2929
- target: "nsis"
3030
arch: ["x64"]
3131
- target: "appx"
@@ -42,7 +42,7 @@ nsis:
4242
# --- MICROSOFT STORE CONFIGURATION ---
4343
appx:
4444
identityName: com.apibolt.app
45-
publisher: CN=ReplaceWithMicrosoftID
45+
publisher: CN=ReplaceWithMicrosoftID
4646
publisherDisplayName: "SHAKIL LAB"
4747
languages: ["en-US"]
4848
mac:

src/renderer/index.html

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
<!doctype html>
22
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>ApiBolt - REST API Client</title>
8+
</head>
39

4-
<head>
5-
<meta charset="UTF-8" />
6-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>ApiBolt - REST API Client</title>
9-
</head>
10-
11-
<body>
12-
<div id="root"></div>
13-
<script type="module" src="/src/main.tsx"></script>
14-
</body>
15-
16-
</html>
10+
<body>
11+
<div id="root"></div>
12+
<script type="module" src="/src/main.tsx"></script>
13+
</body>
14+
</html>

src/renderer/local-password.html

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
<!doctype html>
22
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>ApiBolt - Loading</title>
8+
</head>
39

4-
<head>
5-
<meta charset="UTF-8" />
6-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>ApiBolt - Loading</title>
9-
</head>
10-
11-
<body style="background: transparent">
12-
<div id="root"></div>
13-
<script type="module" src="/src/local-password.tsx"></script>
14-
</body>
15-
16-
</html>
10+
<body style="background: transparent">
11+
<div id="root"></div>
12+
<script type="module" src="/src/local-password.tsx"></script>
13+
</body>
14+
</html>

src/renderer/splash.html

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
<!doctype html>
22
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>ApiBolt - Loading</title>
8+
</head>
39

4-
<head>
5-
<meta charset="UTF-8" />
6-
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
7-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>ApiBolt - Loading</title>
9-
</head>
10-
11-
<body style="background: transparent">
12-
<div id="root"></div>
13-
<script type="module" src="/src/splash-main.tsx"></script>
14-
</body>
15-
16-
</html>
10+
<body style="background: transparent">
11+
<div id="root"></div>
12+
<script type="module" src="/src/splash-main.tsx"></script>
13+
</body>
14+
</html>

src/renderer/src/context/setting/SettingProvider.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,4 @@
1-
import React, {
2-
createContext,
3-
useCallback,
4-
useContext,
5-
useState,
6-
} from "react";
1+
import React, { createContext, useCallback, useContext, useState } from "react";
72
import { useAppSelector } from "@/context/redux/hooks";
83
import { selectActiveProjectId } from "@/context/redux/project/selectors/project";
94

0 commit comments

Comments
 (0)