diff --git a/src/app/(main)/websites/[websiteId]/WebsiteExpandedView.tsx b/src/app/(main)/websites/[websiteId]/WebsiteExpandedView.tsx index 64df01311..833302249 100644 --- a/src/app/(main)/websites/[websiteId]/WebsiteExpandedView.tsx +++ b/src/app/(main)/websites/[websiteId]/WebsiteExpandedView.tsx @@ -138,7 +138,7 @@ export default function WebsiteExpandedView({ const DetailsComponent = views[view] || (() => null); const handleChange = (view?: any) => { - router.push(renderUrl({ view },false,['subview'])); + router.push(renderUrl({ view }, false, ['subview'])); }; const renderValue = (value: string) => items.find(({ key }) => key === value)?.label; @@ -147,7 +147,7 @@ export default function WebsiteExpandedView({