Skip to content

Commit

Permalink
fix placeholder
Browse files Browse the repository at this point in the history
  • Loading branch information
634750802 committed Nov 27, 2024
1 parent 8fd0357 commit 9aa94a5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
import { DatasourceCard } from '@/components/datasource/datasource-card';
import { DatasourceCreateOption } from '@/components/datasource/datasource-create-option';
import { NoDatasourcePlaceholder } from '@/components/datasource/no-datasource-placeholder';
import { useAllKnowledgeBaseDataSources, useKnowledgeBase } from '@/components/knowledge-base/hooks';
import { useAllKnowledgeBaseDataSources } from '@/components/knowledge-base/hooks';
import { Skeleton } from '@/components/ui/skeleton';
import { FileDownIcon, GlobeIcon, PaperclipIcon } from 'lucide-react';

export default function KnowledgeBaseDataSourcesPage ({ params }: { params: { id: string } }) {
const id = parseInt(decodeURIComponent(params.id));
const { knowledgeBase } = useKnowledgeBase(id);
const { data: dataSources, isLoading } = useAllKnowledgeBaseDataSources(id);

return (
Expand Down

0 comments on commit 9aa94a5

Please sign in to comment.