fix: view event details without session

This commit is contained in:
Carl-Gerhard Lindesvärd
2025-10-23 15:13:01 +02:00
parent 07762211d2
commit b8ad8dfede
2 changed files with 7 additions and 9 deletions

View File

@@ -18,14 +18,8 @@ import { useTRPC } from '@/integrations/trpc/react';
import { cn } from '@/utils/cn';
import { getProfileName } from '@/utils/getters';
import type { IClickhouseEvent, IServiceEvent } from '@openpanel/db';
import { useQuery, useSuspenseQuery } from '@tanstack/react-query';
import {
ArrowLeftIcon,
ArrowRightIcon,
FilterIcon,
Loader2Icon,
XIcon,
} from 'lucide-react';
import { useQuery } from '@tanstack/react-query';
import { FilterIcon, XIcon } from 'lucide-react';
import { omit } from 'ramda';
import { useState } from 'react';
import { popModal } from '.';