Sinuhé Coronel
Sinuhé Coronel
This issue exists too for browsers without support for Intl. Specifically, for User Agent `Mozilla/5.0 (Android 9; Mobile…55.0) Gecko/55.0 Firefox/55.0`.
Given that rendering the result is totally in your hands, it should be possible to just check your `searchTerms` and compare them to do some highlighting while rendering your list....
Oh I like that idea! Passing [`Accept-Language`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept-Language) should be an easy task from most of the major SSR libraries (I'm trying to get this to work with [razzle]() btw). The...
I've looked into that and while it hasn't been updated, I wouldn't say it's unmaintained... just dusty. 😜 While researching for some bugs on my Android build, I found some...
Thanks! I'll try this out! I've been thinking about the `Accept-Language` thing, and it's quite difficult to solve with the current API. A solution I thought was making the `RNLocalize`...
Just a heads up, [Intl.js](https://github.com/andyearnshaw/Intl.js/issues/341) will no longer be maintained so... I guess the best route forward would be to consider having implementers make sure they run Node with Intl...
> FormatJS offers a full set of polyfills: https://formatjs.io/docs/polyfills > I see no mentions of NodeJS support, but it might be compatible. Actually, the home page says it does so......
I find this issue when setting an `initialState` in my `reduce-reducers` call: ```ts import { createStore } from 'redux'; import { persistStore, persistReducer } from 'redux-persist'; import { composeWithDevTools }...
It's probably related to #189 or #226, but intriguingly in the client I was doing something like this: ```ts // Here my ReduxService class sets up everything // Like in...
Thanks for the answer, but that’s not what I’m trying to do. I’m trying to “preload” the store’s state prior to rendering it and returning it from the server. >...