Skip to content

Commit

Permalink
chore: typing
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideIadeluca committed Oct 29, 2024
1 parent 8b2675c commit 689c794
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/forum/utils/popupUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export function openOAuthPopup(app: ForumApplication, attrs: Record<string, any>
const left = windowWidth / 2 - width / 2;

window.open(
app.forum.attribute('baseUrl') + attrs.path,
app.forum.attribute<string>('baseUrl') + attrs.path,
'logInPopup',
`width=${width},` + `height=${height},` + `top=${top},` + `left=${left},` + 'status=no,scrollbars=yes,resizable=no'
);
Expand Down

0 comments on commit 689c794

Please sign in to comment.