Disable BlurView on android (#2351)
* A couple of small tweaks * Force the UI to re-render by setting a key * Disable to blurview on android * Remove hackfix
This commit is contained in:
parent
705f9b61ef
commit
0d960c58ba
3 changed files with 35 additions and 4 deletions
|
@ -44,9 +44,9 @@ export function Component(content: ReportComponentProps) {
|
|||
const {isMobile} = useWebMediaQueries()
|
||||
const [isProcessing, setIsProcessing] = useState(false)
|
||||
const [showDetailsInput, setShowDetailsInput] = useState(false)
|
||||
const [error, setError] = useState<string>()
|
||||
const [issue, setIssue] = useState<string>()
|
||||
const [details, setDetails] = useState<string>()
|
||||
const [error, setError] = useState<string>('')
|
||||
const [issue, setIssue] = useState<string>('')
|
||||
const [details, setDetails] = useState<string>('')
|
||||
const isAccountReport = 'did' in content
|
||||
const subjectKey = isAccountReport ? content.did : content.uri
|
||||
const atUri = useMemo(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue