mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Merge pull request #2045 from omnivore-app/fix/web-upload-modal
Dont show upload modal by default
This commit is contained in:
commit
d6ca1c2178
1 changed files with 1 additions and 1 deletions
|
|
@ -693,7 +693,7 @@ function LibraryItemsLayout(props: LibraryItemsLayoutProps): JSX.Element {
|
|||
useState(false)
|
||||
const [showUnsubscribeConfirmation, setShowUnsubscribeConfirmation] =
|
||||
useState(false)
|
||||
const [showUploadModal, setShowUploadModal] = useState(true)
|
||||
const [showUploadModal, setShowUploadModal] = useState(false)
|
||||
const [, updateState] = useState({})
|
||||
|
||||
const removeItem = () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue