+
diff --git a/frontend/projects/ui/src/app/modals/snake/snake.page.ts b/frontend/projects/ui/src/app/modals/snake/snake.page.ts
index 07b1d2650..416c4e614 100644
--- a/frontend/projects/ui/src/app/modals/snake/snake.page.ts
+++ b/frontend/projects/ui/src/app/modals/snake/snake.page.ts
@@ -80,7 +80,10 @@ export class SnakePage {
this.canvas.style.border = '1px solid #e0e0e0'
this.context = this.canvas.getContext('2d')
const container = document.getElementsByClassName('canvas-center')[0]
- this.grid = Math.floor(container.clientWidth / this.width)
+ this.grid = Math.min(
+ Math.floor(container.clientWidth / this.width),
+ Math.floor(container.clientHeight / this.height),
+ )
this.snake = {
x: this.grid * (Math.floor(this.width / 2) - this.startingLength),
y: this.grid * Math.floor(this.height / 2),
diff --git a/frontend/projects/ui/src/app/pages/marketplace-routes/marketplace.service.ts b/frontend/projects/ui/src/app/pages/marketplace-routes/marketplace.service.ts
index f86f8d471..b05c57631 100644
--- a/frontend/projects/ui/src/app/pages/marketplace-routes/marketplace.service.ts
+++ b/frontend/projects/ui/src/app/pages/marketplace-routes/marketplace.service.ts
@@ -37,7 +37,6 @@ export class MarketplaceService {
init(): Subscription {
return this.patch.watch$('ui', 'marketplace').subscribe(marketplace => {
if (!marketplace || !marketplace['selected-id']) {
- console.log('**MARKETPLACE', this.config)
this.marketplace = this.config.marketplace
} else {
this.marketplace =