I've finally determined the issue, that is some library doesn't support for older chrome version and modern css syntax as well, as in this case is chrome 83
If you are struggling with the same problem, the first thing you do is to check where libraries that you've installed support the old version or not
for example:
with antd => https://ant.design/docs/react/compatible-style
with tanstack-query => https://tanstack.com/query/latest/docs/framework/react/installation
and css as well, in my case svh was be used in my css so it just only support for at least 108 version
=> i use "postcss-viewport-unit-fallback" to solve this
so whenever using modern css you need to considering check "can i use" page to check this out