Fixed build.
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
'use client';
|
'use client';
|
||||||
import { TeamDetails } from '@/app/(main)/settings/teams/[teamId]/TeamDetails';
|
import { TeamDetails } from '@/app/(main)/teams/[teamId]/TeamDetails';
|
||||||
import { TeamProvider } from '@/app/(main)/settings/teams/[teamId]/TeamProvider';
|
import { TeamProvider } from '@/app/(main)/teams/[teamId]/TeamProvider';
|
||||||
|
|
||||||
export function AdminTeamPage({ teamId }: { teamId: string }) {
|
export function AdminTeamPage({ teamId }: { teamId: string }) {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
'use client';
|
'use client';
|
||||||
import { Column } from '@umami/react-zen';
|
import { Column } from '@umami/react-zen';
|
||||||
import { useMessages } from '@/components/hooks';
|
import { useMessages } from '@/components/hooks';
|
||||||
import { WebsitesDataTable } from './WebsitesDataTable';
|
import { WebsitesDataTable } from '@/app/(main)/websites/WebsitesDataTable';
|
||||||
import { SectionHeader } from '@/components/common/SectionHeader';
|
import { SectionHeader } from '@/components/common/SectionHeader';
|
||||||
|
|
||||||
export function WebsitesSettingsPage({ teamId }: { teamId: string }) {
|
export function WebsitesSettingsPage({ teamId }: { teamId: string }) {
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ export function ListTable({
|
|||||||
return (
|
return (
|
||||||
<AnimatedRow
|
<AnimatedRow
|
||||||
key={label}
|
key={label}
|
||||||
label={renderLabel ? renderLabel(row, index) : label ?? formatMessage(labels.unknown)}
|
label={renderLabel ? renderLabel(row, index) : (label ?? formatMessage(labels.unknown))}
|
||||||
value={value}
|
value={value}
|
||||||
percent={percent}
|
percent={percent}
|
||||||
animate={animate && !virtualize}
|
animate={animate && !virtualize}
|
||||||
|
|||||||
Reference in New Issue
Block a user