Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ import { fromUUIDtoSUUID } from '@app-builder/utils/short-uuid';
import { type LoaderFunctionArgs, redirect } from '@remix-run/node';
import { Link, Outlet, useRouteError } from '@remix-run/react';
import { captureRemixErrorBoundaryError } from '@sentry/remix';
import { type Namespace, t } from 'i18next';
import { type Namespace } from 'i18next';
import { useTranslation } from 'react-i18next';
import { Icon } from 'ui-icons';

export type DecisionsPerOutcome = {
Expand Down Expand Up @@ -51,6 +52,7 @@ export async function loader({ request, params }: LoaderFunctionArgs) {
}

export default function Analytics() {
const { t } = useTranslation(handle.i18n);
return (
<Page.Main className="bg-grey-background-light">
<Page.Header className="justify-between">
Expand Down
Loading