···306306 )
307307})
308308309309+const EXEMPT_PATHS = ['/robots.txt', '/security.txt', '/.well-known/']
310310+309311// NOTE
310312// we can't use the onPress given by useLinkProps because it will
311313// match most paths to the HomeTab routes while we actually want to
···350352351353 if (shouldHandle) {
352354 href = convertBskyAppUrlIfNeeded(href)
353353- if (newTab || href.startsWith('http') || href.startsWith('mailto')) {
355355+ if (
356356+ newTab ||
357357+ href.startsWith('http') ||
358358+ href.startsWith('mailto') ||
359359+ EXEMPT_PATHS.some(path => href.startsWith(path))
360360+ ) {
354361 openLink(href)
355362 } else {
356363 closeModal() // close any active modals