Merge branch 'bluesky-social:main' into patch-3
This commit is contained in:
commit
ab2b454be8
43 changed files with 1299 additions and 527 deletions
|
@ -200,10 +200,10 @@ function ComposeBtn() {
|
|||
const fetchHandle = useFetchHandle()
|
||||
|
||||
const getProfileHandle = async () => {
|
||||
const {routes} = getState()
|
||||
const currentRoute = routes[routes.length - 1]
|
||||
const routes = getState()?.routes
|
||||
const currentRoute = routes?.[routes?.length - 1]
|
||||
|
||||
if (currentRoute.name === 'Profile') {
|
||||
if (currentRoute?.name === 'Profile') {
|
||||
let handle: string | undefined = (
|
||||
currentRoute.params as CommonNavigatorParams['Profile']
|
||||
).name
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue