Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
275 changes: 0 additions & 275 deletions LIVE_PREVIEW_SETUP.md

This file was deleted.

5 changes: 0 additions & 5 deletions app/applications/[slug]/changelog/page.tsx
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
import { getAllApplications, getChangelogsByApplicationUid } from '@/lib/queries';
import { setLivePreviewQueryParams } from '@/lib/utils';
import Link from 'next/link';
import ChangelogList from '@/components/changelog/ChangelogList';

export default async function ChangelogPage({
params,
searchParams,
}: {
params: Promise<{ slug: string }>;
searchParams: Promise<{ [key: string]: string | string[] | undefined }>;
}) {
const { slug } = await params;
const urlParams = await searchParams;
setLivePreviewQueryParams(urlParams);

// Get the application
const applications = await getAllApplications();
Expand Down
Loading