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 012d54e commit 6370b61Copy full SHA for 6370b61
redisinsight/ui/src/slices/browser/string.ts
@@ -143,7 +143,6 @@ export function fetchDownloadStringValue(
143
144
try {
145
const state = stateInit()
146
- const { encoding } = state.app.info
147
const { data, status, headers } = await apiService.post(
148
getUrl(
149
state.connections.instances.connectedInstance?.id,
@@ -152,7 +151,7 @@ export function fetchDownloadStringValue(
152
151
{
153
keyName: key,
154
},
155
- { params: { encoding }, responseType: 'arraybuffer' },
+ { responseType: 'arraybuffer' },
156
)
157
158
if (isStatusSuccessful(status)) {
0 commit comments