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:
@@ -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}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user