Skip to content

Commit 1aa9255

Browse files
committed
Merge branch 'dev' into README/ethan
2 parents 102de70 + 7116f78 commit 1aa9255

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/client/components/navbar/ProtocolSelect.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import ButtonUnstyled, { buttonUnstyledClasses } from '@mui/base/ButtonUnstyled'
1313

1414
const blue = {
1515
500: '#51819b',
16-
600: '#51819b',
16+
600: '#95ceed',
1717
700: '#7ebdde',
1818
};
1919

src/server/controllers/authController.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ authController.checkForCookie = async (req, res, next) => {
2626
*/
2727
authController.getToken = async (req, res, next) => {
2828
const requestToken = req.query.code;
29-
const url = `https://github.com/login/oauth/access_token?client_id=${process.env.GITHUB_CLIENT_ID}&client_secret=${process.env.GITHUB_SECRET_ID}&code=${requestToken}&scope=repo`;
29+
const url = `https://github.com/login/oauth/access_token?client_id=6e9d37a09ab8bda68d50&client_secret=02f39942f97b1e2210db340a274f762561e6adf0&code=${requestToken}&scope=repo`;
3030
try {
3131
const response = await axios.post(url, {
3232
headers: { Accept: 'application/json', 'Content-Type': 'text/json' },

0 commit comments

Comments
 (0)