Add moduleSuffixes to tsconfig (#11146)
Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -40,7 +40,7 @@ export function useIntentHandler() {
|
||||
await WebBrowser.dismissBrowser().catch(() => {})
|
||||
}
|
||||
|
||||
const referrerInfo = Referrer.getReferrerInfo()
|
||||
const referrerInfo = await Referrer.getReferrerInfo()
|
||||
if (referrerInfo && referrerInfo.hostname !== 'bsky.app') {
|
||||
ax.metric('deepLink:referrerReceived', {
|
||||
to: url,
|
||||
|
||||
@@ -8,6 +8,8 @@ export function useNavigationTabState() {
|
||||
return {
|
||||
isAtHome: currentRoute === 'Home',
|
||||
isAtSearch: currentRoute === 'Search',
|
||||
isAtFeeds: currentRoute === 'Feeds',
|
||||
isAtBookmarks: currentRoute === 'Bookmarks',
|
||||
isAtNotifications: currentRoute === 'Notifications',
|
||||
isAtMyProfile: currentRoute === 'MyProfile',
|
||||
isAtMessages: currentRoute === 'Messages',
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
export function useOTAUpdates() {}
|
||||
export function useApplyPullRequestOTAUpdate() {
|
||||
return {
|
||||
tryApplyUpdate: () => {},
|
||||
tryApplyUpdate: async (_channel: string) => {},
|
||||
revertToEmbedded: () => {},
|
||||
isCurrentlyRunningPullRequestDeployment: false,
|
||||
currentChannel: 'web-build',
|
||||
|
||||
Reference in New Issue
Block a user