mirror of
https://github.com/umami-software/umami.git
synced 2026-02-12 16:45:35 +01:00
Fixed build.
This commit is contained in:
parent
b96b4941f4
commit
7abfa1cb5b
3 changed files with 4 additions and 4 deletions
|
|
@ -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}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue