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 6af91aa commit f93f4d0Copy full SHA for f93f4d0
bun.lockb
-698 Bytes
package.json
@@ -55,7 +55,6 @@
55
"react-dom": "^18.2.0 || ^19"
56
},
57
"dependencies": {
58
- "@radix-ui/react-scroll-area": "^1.0.3",
59
- "@upstash/redis": "^1.35.3"
+ "@radix-ui/react-scroll-area": "^1.0.3"
60
}
61
src/redis-cli.tsx
@@ -143,6 +143,11 @@ export const RedisCli: React.FC<CliProps> = (props) => {
143
headers: {
144
"Content-Type": "application/json",
145
Authorization: `Bearer ${props.token}`,
146
+ ...(process.env.UPSTASH_CONSOLE
147
+ ? {
148
+ "Upstash-Telemetry-Platform": "console",
149
+ }
150
+ : {}),
151
152
body: JSON.stringify(args),
153
})
0 commit comments