Merge pull request #22189 from jithenms/feature/add-stack-trace-in-error-page

[feat] add stack trace option in error page
This commit is contained in:
Patrik Oldsberg
2024-02-06 13:42:34 +01:00
committed by GitHub
7 changed files with 105 additions and 4 deletions
@@ -84,6 +84,7 @@ export const PlaylistPage = () => {
<ErrorPage
status={(error as ResponseError).response?.status.toString()}
statusMessage={error.toString()}
stack={error.stack}
/>
);
}
@@ -142,6 +142,7 @@ export const ActionsPage = () => {
<ErrorPage
statusMessage="Failed to load installed actions"
status="500"
stack={error.stack}
/>
);
}