fix: handle navigation after create
This commit is contained in:
parent
d600a94ebd
commit
73b189560f
@ -20,10 +20,10 @@ import {
|
||||
} from '@mui/material'
|
||||
import { MuiFileInput } from 'mui-file-input'
|
||||
import { useEffect, useState } from 'react'
|
||||
import { Link } from 'react-router-dom'
|
||||
import { Link, useNavigate } from 'react-router-dom'
|
||||
import { LoadingSpinner } from '../../components/LoadingSpinner'
|
||||
import { MetadataController, NostrController } from '../../controllers'
|
||||
import { getProfileRoute } from '../../routes'
|
||||
import { appPrivateRoutes, getProfileRoute } from '../../routes'
|
||||
import { ProfileMetadata, User, UserRole } from '../../types'
|
||||
import {
|
||||
encryptArrayBuffer,
|
||||
@ -45,6 +45,7 @@ import { useSelector } from 'react-redux'
|
||||
import { State } from '../../store/rootReducer'
|
||||
|
||||
export const CreatePage = () => {
|
||||
const navigate = useNavigate()
|
||||
const [isLoading, setIsLoading] = useState(false)
|
||||
const [loadingSpinnerDesc, setLoadingSpinnerDesc] = useState('')
|
||||
|
||||
@ -349,7 +350,7 @@ export const CreatePage = () => {
|
||||
}
|
||||
setIsLoading(false)
|
||||
|
||||
// todo: navigate to verify
|
||||
navigate(`${appPrivateRoutes.sign}?file=${fileUrl}&key=${encryptionKey}`)
|
||||
}
|
||||
|
||||
if (authUrl) {
|
||||
|
Loading…
Reference in New Issue
Block a user