James EdJo
James EdJo
I think this happens because the redirect callback is picked up by the intent-filter in `` instead of reaching `expo-web-browser`'s `Linking.addEventListener('url', _redirectHandler)`. When the app state changes from `background` to...
@md5 @supernova32 Does this look ok?
Something similar has been happening to me, I think related to starting sway with a second screen already plugged in. Unplugging it allows me to click things again.
Filtering on `t.relname` doesn't work because the namespace is prefixed in the call to `update_view`: ```ruby pry> Scenic::Adapters::Postgres::Indexes.new(connection: ActiveRecord::Base.connection).on('shop.products') (1.9ms) SELECT t.relname as object_name, i.relname as index_name, pg_get_indexdef(d.indexrelid) AS definition...
Possibly also related to https://github.com/expo/expo/issues/10860 and https://github.com/expo/expo/issues/9677 If I recall correctly, the response will be `dismiss` on Android whenever the app is returned to before the redirect handler is called....
Rough outline of what I've used to get this working: ## src/app/layout.tsx ### checkAuthenticated ```typescript import { cookies } from 'next/headers' import jwt from 'jsonwebtoken' import { password } from...