Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Return a promise for `getReferrerInfoAsync` on web (#4777)

authored by

Hailey and committed by
GitHub
f021c064 cd9bba4b

+1 -2
+1 -2
modules/expo-bluesky-swiss-army/src/Referrer/index.web.ts
··· 7 7 throw new NotImplementedError() 8 8 } 9 9 10 - export function getReferrerInfoAsync(): Promise<ReferrerInfo | null> { 10 + export async function getReferrerInfoAsync(): Promise<ReferrerInfo | null> { 11 11 if ( 12 12 Platform.OS === 'web' && 13 13 // for ssr ··· 29 29 console.error('Failed to parse referrer URL') 30 30 } 31 31 } 32 - 33 32 return null 34 33 }