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 b8d1c53 commit 03fe8e7Copy full SHA for 03fe8e7
ee/apps/billing/package.json
@@ -2,6 +2,7 @@
2
"name": "@uninbox-ee/billing",
3
"license": "COMMERCIAL",
4
"private": true,
5
+ "type": "module",
6
"exports": {
7
"./trpc": {
8
"types": "./trpc/index.ts"
packages/realtime/client.ts
@@ -27,7 +27,8 @@ export default class RealtimeClient {
27
method: 'POST',
28
credentials: 'include',
29
headers: {
30
- 'org-shortcode': `${orgShortCode}`
+ 'org-shortcode': orgShortCode,
31
+ 'Content-Type': 'application/json'
32
}
33
});
34
if (!res.ok) {
0 commit comments