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 626a3e6 commit 33656ceCopy full SHA for 33656ce
src/widgets/dashboard/utils/happ-routing-builder/happ-routing-builder.widget.tsx
@@ -119,7 +119,7 @@ export const HappRoutingBuilderWidget = () => {
119
const generateBase64 = () => {
120
const formattedData = formatJsonData()
121
const jsonString = JSON.stringify(formattedData)
122
- return btoa(jsonString)
+ return Buffer.from(jsonString, 'utf8').toString('base64')
123
}
124
125
const handleSave = () => {
0 commit comments