fix: changed Billing page name to Overview

This commit is contained in:
Shariq Ansari 2024-11-16 13:11:58 +05:30
parent 78870ba10b
commit eece201ea9
3 changed files with 5 additions and 5 deletions

View file

@ -51,9 +51,9 @@ onMounted(() => {
const links = [
{
label: 'Billing',
label: 'Overview',
icon: BillingIcon,
to: 'Billing',
to: 'Overview',
},
{
label: 'Plans',

View file

@ -1,7 +1,7 @@
<template>
<div class="flex h-full flex-col overflow-hidden">
<h2 class="flex items-center h-7 text-xl font-semibold leading-5 px-60 my-8">
{{ 'Billing' }}
{{ 'Overview' }}
</h2>
<div v-if="team.data" class="px-60 overflow-y-auto">
<CurrentPlan @changePlan="router.push({ name: 'Plans' })" />

View file

@ -3,8 +3,8 @@ import { createRouter, createWebHistory } from 'vue-router'
const routes = [
{
path: '/',
name: 'Billing',
component: () => import('./pages/Billing.vue'),
name: 'Overview',
component: () => import('./pages/Overview.vue'),
},
{
path: '/plans',