We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7507418 commit 8884b48Copy full SHA for 8884b48
src/components/Errors/ErrorDetails/ErrorDetailsCardContent/FlowStack/SpanFrameGroup/typeGuards.ts
@@ -4,5 +4,4 @@ import { isString } from "../../../../../../typeGuards/isString";
4
5
export const isServiceInfoWithName = (
6
x: ErrorOriginService | null
7
-): x is Omit<ErrorOriginService, "serviceName"> & { serviceName: string } =>
8
- isObject(x) && isString(x.serviceName);
+): x is { serviceName: string } => isObject(x) && isString(x.serviceName);
0 commit comments