Emelia Smith

Results 722 comments of Emelia Smith

I wouldn't necessarily have something against becoming a W3C member, however, the current fee structure does not make this possible as a self-employed software engineer, where it is currently geared...

That might actually be me being quoted there. I am looking at hacking on this, but I'm wanted to make the API work in an "adonis-like" manner with loaders and...

@meyerweb probably not, but what server software are you using?

That's completely unrelated then as this issue ks about how Elk interacts with other servers via OAuth. The hidden state of that dialog is controlled by cookies iirc (was testing...

Haven't had time to progress on this, but I still think it's a good feature if we can figure out how to reasonably test it.

@thetutlage the thing this stalled on was how to test it. I still don't have good ideas on that, but maybe we need a few stub packages just for the...

Perhaps interestingly here, if the page is loaded from the server, then there is a `link[rel=alternate]` node with the full `at://` URI, but if it's from a user navigation, then...

Apparently the way to do correct link alternate on navigation would be to use a library like react-helmet: https://github.com/necolas/react-native-web/discussions/1974

@mozzius so whilst this does work for adding the link tags, the rendering logic in the app makes things get a bit confused: multiple link elements end up stacking up:...

Looks like I can maybe use the isFocused state from react-navigation to get the right effect: ```diff diff --git i/src/screens/Profile/Header/Shell.tsx w/src/screens/Profile/Header/Shell.tsx index 20fb595eb..cdde48603 100644 --- i/src/screens/Profile/Header/Shell.tsx +++ w/src/screens/Profile/Header/Shell.tsx @@ -15,14...