VSCode Prettier Extension - vscode-extensions

I've been seeing this error sign on my prettier vscode extension but when I click on it, it seems just fine.
what could be the reason for it and how can I fix it?
Thanks

Related

Browser's Debugger Showing Old Code for Vue

Sometimes I add a new variable to the Vue data() and get a ReferenceError (like "ReferenceError: windowHeight is not defined"), then when I check the error in the Firefox's debugger, I see that Vue in debugger is the old code not the one I have in my IDE. But when I try the exact same thing in Private Browsing I can see the code being exactly the same as my IDE.
Is this some kind of caching problem? Or is it related to my IDE which is VSCode. And how can I solve it?
I was expecting to see the same code as in my IDE, but during debug I see the old one.

React Native TextInput closes automatically when opened on android

I switched laptops and cloned the repository of my project, did a quick yarn install and looks like it was a big difference from the one on the main branch but I didn't bother since maybe it's just because of different Node versions.
Now every time I click on one TextInput the keyboard opens and closes immediately only on android. I attached a quick recording here. Tried some solutions and it looks like switching android:windowSoftInputMode from adjustResize to adjustPan in AndroidManifest.xml fixes the problem with the closing but I'm not really happy with the behaviour of the keyboard in the app when it's set to adjustPan. Maybe this issue starting happening a while ago but I just saw it now.
Here is just an input centered inside a simple View.
https://gfycat.com/ordinaryquestionabledinosaur
Any suggestions anyone?
Was facing a similar issue, turned out that the react-native-screens library was causing the problem. Try setting the version to "~3.10.2". Worked out for me.
Change the line in AndroidManifest.xml
Old line
android:windowSoftInputMode="adjustResize"
New line
android:windowSoftInputMode="stateAlwaysHidden|adjustPan"
Change the line in AndroidManifest.xml works for me, I did the update but that does not works
Change the config to:
android:windowSoftInputMode="stateAlwaysHidden|adjustPan"
Replace the line in the AndroidManifest.xml file:
Before
android:windowSoftInputMode="adjustResize"
After
android:windowSoftInputMode="stateAlwaysHidden|adjustPan"
Just Upgraded react-native-screen to latest version.
yarn add react-native-screens
"react-native-screens": "^3.13.1"
For those who have the same problem, having both botton and top padding often result on the keyboard closing itself when opening. Took a while to discover that
if you're using react native version "0.64.*". Just set react-native-screens version to "3.4.0". Do not use "^" to avoid npm updated it. and it worked for me.

How to fix VS Code extension cash issue?

I installed some extensions in VS Code, but after that my all code looks none-style.
How to fix this issue? Which extension should I install for this? Color mode is not working. All code looks white.
This is uncolored code.
This is original code.
It was solved. Click the settings icon(bottom left) in VSCode and tap Color Theme or press Ctrl+K,T. And then choose the right theme according to your env.
Default theme of VSCode is Dark+ (default dark).
This solved problem.

ReferenceError: safari is not defined

Whenever I click on a textarea the following message pops up:
What could possibly trigger this?
Thanks!
Note: I'm using JQM 1.4.5 and the textarea is normal, nothing was configured.
I was having the same issue on one of my projects, with the same traceback as yours. It was strange, as there was no bundle.js in my project, or even being loaded. I found it was an issue with one of my extensions, so disabling extensions and clearing cache should fix your issue.
Are you using chrome browser?
If so, sign out of your chrome browser. That should fix it.
It might be that you have some installed chrome extensions whose javascript codes are conflicting with your project

The LiveReload extension for Middleman is reloading the entire page instead of just the CSS.

When I use the LiveReload mac's app it works as it's supposed to. So it's not really a problem but can't help but think I'm missing something obvious.
Does anyone know why this is happening or how to fix it?