Skip to content
This repository was archived by the owner on Feb 5, 2022. It is now read-only.

Commit 2fc62d5

Browse files
committed
fix(blog): fix footer on tablet / mobile
1 parent dad0d30 commit 2fc62d5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/pages/app-blog/app-blog.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ export class AppBlog {
341341
postData = this.renderPosts(this.blogPostsData, this.blogIsLoading, this.blogIsError, '', this.blogFilter);
342342
}
343343

344-
return (
344+
return [
345345
<div class="blog-container container">
346346
<div id="blog-filters" class="blog-filters">
347347
<div class="blog-filters-nav">
@@ -472,8 +472,8 @@ export class AppBlog {
472472
</div>
473473
<div class="blog-pagination">{pagination}</div>
474474
<stencil-route-link url="/blog-index" />
475-
<app-footer />
476-
</div>
477-
);
475+
</div>,
476+
<app-footer />,
477+
];
478478
}
479479
}

0 commit comments

Comments
 (0)