From f77743aebfca26faabdd04e9ed1dd31721459877 Mon Sep 17 00:00:00 2001 From: Remix Run Bot Date: Mon, 2 Oct 2023 16:44:23 +0000 Subject: [PATCH] chore: format --- packages/router/router.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/packages/router/router.ts b/packages/router/router.ts index 5e7c01518c..11855a65a7 100644 --- a/packages/router/router.ts +++ b/packages/router/router.ts @@ -4074,12 +4074,12 @@ function getShortCircuitMatches(routes: AgnosticDataRouteObject[]): { route: AgnosticDataRouteObject; } { // Prefer a root layout route if present, otherwise shim in a route object -let route = - routes.length === 1 - ? routes[0] - : routes.find((r) => r.index || !r.path || r.path === "/") || { - id: `__shim-error-route__`, - }; + let route = + routes.length === 1 + ? routes[0] + : routes.find((r) => r.index || !r.path || r.path === "/") || { + id: `__shim-error-route__`, + }; return { matches: [