fix: changed Billing page name to Overview
This commit is contained in:
parent
78870ba10b
commit
eece201ea9
3 changed files with 5 additions and 5 deletions
|
|
@ -51,9 +51,9 @@ onMounted(() => {
|
|||
|
||||
const links = [
|
||||
{
|
||||
label: 'Billing',
|
||||
label: 'Overview',
|
||||
icon: BillingIcon,
|
||||
to: 'Billing',
|
||||
to: 'Overview',
|
||||
},
|
||||
{
|
||||
label: 'Plans',
|
||||
|
|
|
|||
|
|
@ -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' })" />
|
||||
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue