diff --git a/Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/Components/Pages/Home.razor b/Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/Components/Pages/Home.razor
index c12c34409..b072c3ef0 100644
--- a/Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/Components/Pages/Home.razor
+++ b/Tools/LambdaTestTool-v2/src/Amazon.Lambda.TestTool/Components/Pages/Home.razor
@@ -1,4 +1,4 @@
-@page "/"
+@page "/"
@using Amazon.Lambda.TestTool.Commands
@using Amazon.Lambda.TestTool.Services
@@ -9,7 +9,7 @@
@using Microsoft.AspNetCore.Http;
@inject IHttpContextAccessor HttpContextAccessor
-@inject IRuntimeApiDataStore RuntimeApiModel
+@inject IRuntimeApiDataStoreManager DataStoreManager
@inject IDirectoryManager DirectoryManager
Request ID: @RuntimeApiModel.ActiveEvent.AwsRequestId
-Status: @RuntimeApiModel.ActiveEvent.EventStatus
-Last Updated: @RuntimeApiModel.ActiveEvent.LastUpdated
-Event JSON: ShowEventJson(RuntimeApiModel.ActiveEvent)">@CreateSnippet(RuntimeApiModel.ActiveEvent.EventJson)
- @if (RuntimeApiModel.ActiveEvent.EventStatus == EventContainer.Status.Failure) +Request ID: @DataStore.ActiveEvent.AwsRequestId
+Status: @DataStore.ActiveEvent.EventStatus
+Last Updated: @DataStore.ActiveEvent.LastUpdated
+Event JSON: ShowEventJson(DataStore.ActiveEvent)">@CreateSnippet(DataStore.ActiveEvent.EventJson)
+ @if (DataStore.ActiveEvent.EventStatus == EventContainer.Status.Failure) { -Error Type: @RuntimeApiModel.ActiveEvent.ErrorType
+Error Type: @DataStore.ActiveEvent.ErrorType
Error Response: -
@RuntimeApiModel.ActiveEvent.ErrorResponse+
@DataStore.ActiveEvent.ErrorResponse} else {
Response: -
@Utils.TryPrettyPrintJson(RuntimeApiModel.ActiveEvent.Response)+
@Utils.TryPrettyPrintJson(DataStore.ActiveEvent.Response)}