Skip to content

Commit

Permalink
tab icon
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dongon committed Oct 3, 2024
1 parent 04e855b commit 090d59d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,5 @@ venv/

# to keep client secret.. a secret
keys.env

__pycache__/
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vibify</title>
<link rel="icon" href="/public/assets/vibifylogo.png">
</head>
<body>
<div id="root"></div>
Expand Down
Binary file added public/assets/vibifylogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/AuthorizeHelpers.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export async function exchangeAuthorizationCodeForToken(code) {
// console.log('Using codeVerifier:', codeVerifier); // log code verifier

// send code and verifier to flask
const response = await fetch('https://vibify-ces8.onrender.com:5000/token', {
const response = await fetch('https://vibify-ces8.onrender.com/token', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Expand Down

0 comments on commit 090d59d

Please sign in to comment.