-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: remove download feature flag (#5914) #6229
feat: remove download feature flag (#5914) #6229
Conversation
Deployment Summary
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note, CopyMask
styles are now used by EmbeddingButton
component.
@@ -36,9 +36,6 @@ export const CodeBlock = styled.div` | |||
} | |||
`; | |||
|
|||
/** | |||
* @deprecated by CodeBlock styles once "DOWNLOAD_UX" feature flag is removed. | |||
*/ | |||
export const DownloadCodeBlock = styled.div` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note DownloadCodeBlock
styles are now used by EmbeddingButton
component. I have therefore removed the @deprecated
comment.
const [selectedFormat, setSelectedFormat] = useState< | ||
DATASET_ASSET_FORMAT | "" | ||
>(""); | ||
const [fileSize, setFileSize] = useState<number>(0); | ||
const [fileName, setFileName] = useState<string>(""); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We no longer generate a cURL and therefore fileName
is no longer needed.
b43c883
to
cab9002
Compare
Reason for Change
Changes
dux
.