Add sentry tracing (#4279)
* Add sentry tracign * Improve Sentry loggin
This commit is contained in:
@ -26,7 +26,7 @@ const meta: Meta<PageDecoratorArgs> = {
|
||||
parameters: {
|
||||
msw: {
|
||||
handlers: [
|
||||
graphql.query('FindOneperson', () => {
|
||||
graphql.query('FindOnePerson', () => {
|
||||
return HttpResponse.json({
|
||||
data: {
|
||||
person: mockedPeopleData[0],
|
||||
|
||||
@ -21,7 +21,7 @@ const meta: Meta<PageDecoratorArgs> = {
|
||||
layout: 'fullscreen',
|
||||
msw: {
|
||||
handlers: [
|
||||
graphql.query('FindOnemessageChannel', () => {
|
||||
graphql.query('FindOneMessageChannel', () => {
|
||||
return HttpResponse.json({
|
||||
data: {
|
||||
messageChannel: {
|
||||
|
||||
@ -23,7 +23,7 @@ const meta: Meta<PageDecoratorArgs> = {
|
||||
msw: {
|
||||
handlers: [
|
||||
...graphqlMocks.handlers,
|
||||
graphql.query('FindOneapiKey', () => {
|
||||
graphql.query('FindOneApiKey', () => {
|
||||
return HttpResponse.json({
|
||||
data: {
|
||||
apiKey: {
|
||||
|
||||
@ -20,7 +20,7 @@ const meta: Meta<PageDecoratorArgs> = {
|
||||
parameters: {
|
||||
msw: {
|
||||
handlers: [
|
||||
graphql.query('FindOnewebhook', () => {
|
||||
graphql.query('FindOneWebhook', () => {
|
||||
return HttpResponse.json({
|
||||
data: {
|
||||
webhook: {
|
||||
|
||||
Reference in New Issue
Block a user