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 2a5e29f commit e4f9087Copy full SHA for e4f9087
src/writeData/components/FileUploadSection.tsx
@@ -56,7 +56,10 @@ const FileUploadSection = () => {
56
{items.map(item => {
57
const goto = () => {
58
event('Load data file upload clicked', {type: item.name})
59
- history.push(
+ if (item.id === 'csv') {
60
+ return history.push(`/${ORGS}/${org.id}/new-user-setup/cli`)
61
+ }
62
+ return history.push(
63
`/${ORGS}/${org.id}/load-data/${FILE_UPLOAD}/${item.id}`
64
)
65
}
0 commit comments