From 752a649b86b574d72864f40801f2a7c8c4184ab4 Mon Sep 17 00:00:00 2001 From: Mike Roberts Date: Mon, 8 Jul 2024 13:22:53 -0400 Subject: [PATCH] Small cleanup --- src/app/lambdaFunctions/authenticatedWeb/lambda.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/lambdaFunctions/authenticatedWeb/lambda.ts b/src/app/lambdaFunctions/authenticatedWeb/lambda.ts index f788d16..9c1c772 100644 --- a/src/app/lambdaFunctions/authenticatedWeb/lambda.ts +++ b/src/app/lambdaFunctions/authenticatedWeb/lambda.ts @@ -20,11 +20,11 @@ import { gitHubActivityRoute } from '../../web/fragments/gitHubActivity' import { workflowHeadingRoute } from '../../web/fragments/workflowHeading' const router = createRouter([ - showHelloRoute, repoHeadingRoute, + workflowHeadingRoute, actionsStatusRoute, gitHubActivityRoute, - workflowHeadingRoute + showHelloRoute ]) let appState: AppState