Skip to content

Commit

Permalink
fix(#28): add empty object in request and metadata on new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
notmedia committed Dec 11, 2022
1 parent e98564a commit cd2ac46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/storage/tabs.storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ export const useTabsStore = create(
protocol: GrpcProtocol.GRPC,
requestTabs: {
activeTabId: requestTabId,
request: { id: requestTabId },
metadata: { id: nanoid() },
request: { id: requestTabId, value: '{\n \n}' },
metadata: { id: nanoid(), value: '{\n \n}' },
},
response: { id: nanoid() },
tlsId: tls?.id,
Expand Down

0 comments on commit cd2ac46

Please sign in to comment.