anhtuan219
anhtuan219
Is this issue fixed? I also have trouble with it when previewing by bat with fzf and ripgrep ``` rg --line-number . | fzf --preview 'bat --theme=OneHalfDark --color=always --style=numbers --line-range=:500...
I tested in ubuntu (windows subsystem for linux) and got this issue too ``` rg --line-number . | fzf --preview 'batcat --theme=OneHalfDark --color=always --style=numbers --line-range=:500 {}' ```
@aviRon012 Which specific font of CascadiaCode in v3.0.2 that you installed? I have exactly this issue (icons of Desktop, Links, Music,... look weird) I use the latest version of PowerShell...
> I have the same issue: > >  @JFSF You can download the latest version of CascadiaCode and install the 'CaskaydiaCoveNerdFont-Regular.ttf' (like my above answer) I noticed that you...
I have the same issue too I'm using `injectedJavaScriptObject` but the result of `window.ReactNativeWebView.injectedObjectJson()` is `undefined` too I searched through the docs, and 1 prop caught my attention It's [domStorageEnabled](https://github.com/react-native-webview/react-native-webview/blob/master/docs/Reference.md#domstorageenabled)...
I exported the path of google-services.json to the environment variable to replace eas secret and it works Detail [here](https://github.com/expo/eas-cli/issues/228#issuecomment-2397244607)
@aerielcruz You can use config plugin to modify the native files for a managed workflow Here's [an example](https://github.com/expo/expo/discussions/31071#discussioncomment-11128404) that modifies file `/android/app/build.gradle` If you want to modify file `/android/build.gradle`, use...
@nassimerrahoui For some build configuration (e.g. `minSdkVersion`, `targetSdkVersion`, `compileSdkVersion`, `kotlinVersion`, `buildToolsVersion`, `deploymentTarget`,...) you can use [expo-build-properties](https://docs.expo.dev/versions/latest/sdk/build-properties/) But if you want more granular control, until now the most suitable solution that...
+1 Meanwhile, I'm using this to suppress that error ``` const error = console.error; console.error = (...args: any) => { if (/defaultProps/.test(args[0])) return; error(...args); }; ```