Skip to content

Commit 076eaae

Browse files
author
Ajit Kumar
committed
fix(page rendering)
1 parent ea22ffc commit 076eaae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/pages/problems/problems.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default function Problems() {
5959
});
6060

6161
$content.addEventListener("click", clickHandler);
62-
$page.content = $content;
62+
$page.body = $content;
6363
app.append($page);
6464
helpers.showAd();
6565

src/pages/quickTools/quickTools.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default function QuickTools() {
3131
* @param {WCPage} $page
3232
*/
3333
function render($page) {
34-
$page.content = (
34+
$page.body = (
3535
<div className="main" id="quicktools-settings">
3636
{(() => {
3737
const totalRows = settings.QUICKTOOLS_ROWS * settings.QUICKTOOLS_GROUPS;

0 commit comments

Comments
 (0)