Skip to content

Commit

Permalink
feature/blog-page-implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
rohit-zip committed Jun 10, 2024
1 parent ec6490e commit d5c2791
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/custom/BloggiosToast.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default function BloggiosToast() {
case "notification":
toast(message, {
action: path && {
chapterName: 'View',
label: 'View',
onClick: handleSnackbarAction
}
});
Expand Down
2 changes: 1 addition & 1 deletion components/custom/buttons/SocialAuthButtons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default function SocialAuthButtons({
}) {

const OAUTH2_REDIRECT_URI = `${window.location.origin}/oauth2/redirect`
const GOOGLE_AUTH_URL = "https://auth.bloggios.in" + '/oauth2/authorize/google?redirect_uri=' + OAUTH2_REDIRECT_URI;
const GOOGLE_AUTH_URL = "http://localhost:7001" + '/oauth2/authorize/google?redirect_uri=' + OAUTH2_REDIRECT_URI;

return (
<div className={`flex items-center justify-between space-x-2 ${classname}`}>
Expand Down

0 comments on commit d5c2791

Please sign in to comment.