diff --git a/frontends/dashboard/src/routes/app/instances/[instanceId]/+page.svelte b/frontends/dashboard/src/routes/app/instances/[instanceId]/+page.svelte index 6004536c..36c5bd20 100644 --- a/frontends/dashboard/src/routes/app/instances/[instanceId]/+page.svelte +++ b/frontends/dashboard/src/routes/app/instances/[instanceId]/+page.svelte @@ -19,7 +19,7 @@ console.log(instanceId) let isReady = false - $: ({ status, version, secondsThisMonth } = $instance) + $: ({ status, version } = $instance) assertExists($instance, `Expected instance here`) const { subdomain } = $instance @@ -41,9 +41,7 @@
Status:  {status}
-
- Usage: {Math.ceil(secondsThisMonth / 60)} mins -
+
Version: {version}
diff --git a/frontends/dashboard/src/routes/app/instances/[instanceId]/Overview.svelte b/frontends/dashboard/src/routes/app/instances/[instanceId]/Overview.svelte index 7ae6ace2..ea48251f 100644 --- a/frontends/dashboard/src/routes/app/instances/[instanceId]/Overview.svelte +++ b/frontends/dashboard/src/routes/app/instances/[instanceId]/Overview.svelte @@ -1,9 +1,8 @@
@@ -13,10 +12,6 @@ Status:
-
- Usage: {Math.ceil(secondsThisMonth / 60)} mins -
-
Version: {version}
diff --git a/frontends/dashboard/src/routes/app/instances/[instanceId]/UsageChart.svelte b/frontends/dashboard/src/routes/app/instances/[instanceId]/UsageChart.svelte index 4cb0bb9a..f8568e95 100644 --- a/frontends/dashboard/src/routes/app/instances/[instanceId]/UsageChart.svelte +++ b/frontends/dashboard/src/routes/app/instances/[instanceId]/UsageChart.svelte @@ -1,7 +1,6 @@