Skip to content

Commit 5caf1f6

Browse files
committed
update environment variables and remove Facebook sign-in option
1 parent e56d5a9 commit 5caf1f6

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

.env

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
LOCALHOST_ELECTRON_SERVER_PORT="8844"
2-
BASE_REST_API="https://gp-api-w36p.onrender.com"
3-
GH_TOKEN="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"
2+
BASE_REST_API="https://localhost:4200"

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Run Build for macOS
2727
env:
28-
GH_TOKEN: ${{ secrets.GH_TOKEN }}
28+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2929
run: npm run transpile:electron && npm run build && npx electron-builder --mac --x64 --publish=always
3030

3131
build-windows:
@@ -44,5 +44,5 @@ jobs:
4444

4545
- name: Run Build for Windows
4646
env:
47-
GH_TOKEN: ${{ secrets.GH_TOKEN }}
47+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4848
run: npm run transpile:electron && npm run build && npx electron-builder --win --x64 --publish=always

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "electron-gp",
33
"private": true,
4-
"version": "0.2.22",
4+
"version": "0.2.23",
55
"type": "module",
66
"main": "dist-main/app.js",
77
"author": "traeop",
8-
"description": "description",
8+
"description": "GP",
99
"scripts": {
1010
"dev": "npm-run-all --parallel dev:react dev:electron",
1111
"dev:react": "vite",

src/renderer/ui-business/AuthSocialNetwork/components/SignIn.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ export const SignIn = () => {
55
return (
66
<Stack spacing={2} alignItems="center">
77
<ProviderButton data-provider="google" text="Enter by Google" />
8-
<ProviderButton data-provider="facebook" text="Enter by Facebook" />
98
</Stack>
109
);
1110
};

0 commit comments

Comments
 (0)