We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a18413c commit b2c87a2Copy full SHA for b2c87a2
1 file changed
reflex/.templates/web/utils/state.js
@@ -89,7 +89,7 @@ export const getToken = () => {
89
* @returns The given URL modified to point to the actual backend server.
90
*/
91
export const getBackendURL = (url_str) => {
92
- if (url_str ?? undefined === undefined) {
+ if ((url_str ?? undefined) === undefined) {
93
url_str = env.PING;
94
}
95
// Get backend URL object from the endpoint.
0 commit comments