Siraj
Siraj
CCConvex Community
Created by Siraj on 4/13/2024 in #support-community
Streaming without realtime database updated.
That's supercool! Thanks @ian & team convex 🙂
23 replies
CCConvex Community
Created by Siraj on 5/1/2024 in #support-community
Billing page in dashboard is stuck loading
Great! Works now, thank you 🙂
8 replies
CCConvex Community
Created by Siraj on 5/1/2024 in #support-community
Billing page in dashboard is stuck loading
Thanks Michal 🙂
8 replies
CCConvex Community
Created by Siraj on 5/1/2024 in #support-community
Billing page in dashboard is stuck loading
Just to give context, my account downgraded yesterday to apply startup plan. Might be related to that
8 replies
CCConvex Community
Created by Siraj on 5/1/2024 in #support-community
Billing page in dashboard is stuck loading
Unfortunately, still yeah 😦
8 replies
CCConvex Community
Created by Siraj on 4/13/2024 in #support-community
Streaming without realtime database updated.
okay! thank you 🙂
23 replies
CCConvex Community
Created by Siraj on 4/13/2024 in #support-community
Streaming without realtime database updated.
Thanks @ian! Already tried #1 but it still taking a lot of bandwidth and tried #3 too, unfortunately it was affecting UX which required more frontend work to fix it. Before trying #2 I wanted to confirm it with you, as @lee mentioned that they are already working on this, do we have an estimate when this could be ready?
23 replies
CCConvex Community
Created by Chad Maycumber on 4/28/2023 in #support-community
Database branches/Stages
Hello! Is there any latest updates on dev vs prod workflows? If there is a best practice for that then I'd love to use that, otherwise will go with workaround discussed here.
16 replies
CCConvex Community
Created by Omar Farooq on 8/14/2023 in #support-community
Requesting pdf-parse and pdfjs-dist on Action function's node environment
for anyone have similar issue in the future, this should work 🙂 https://www.npmjs.com/package/@bundled-es-modules/pdfjs-dist
55 replies
CCConvex Community
Created by Omar Farooq on 8/14/2023 in #support-community
Requesting pdf-parse and pdfjs-dist on Action function's node environment
Hello! Thanks for the information. It didn't work by vendoring in pdf-parse code and importing mozilla dependency directly. I hit trouble with not having es export not in pdf.js or maybe I did something wrong but I finally sorted it out by using @bundled-es-modules/pdfjs-dist on my react app, extracting text in frontend and sending the text data to backend.
55 replies
CCConvex Community
Created by Omar Farooq on 8/14/2023 in #support-community
Requesting pdf-parse and pdfjs-dist on Action function's node environment
No, I'm getting this error. Even when I use forked pdf-parse from above.
55 replies
CCConvex Community
Created by Omar Farooq on 8/14/2023 in #support-community
Requesting pdf-parse and pdfjs-dist on Action function's node environment
Hello!! Do we have any updates on getting PDF parser working? I'm getting same error. 😦
55 replies
CCConvex Community
Created by fay on 5/20/2023 in #support-community
isAuthenticated from useConvexAuth flashes true, lands at false, even though auth0 is authenticated
No description
89 replies
CCConvex Community
Created by fay on 5/20/2023 in #support-community
isAuthenticated from useConvexAuth flashes true, lands at false, even though auth0 is authenticated
Thank you! I had the rotation off because I was receiving access denied error from auth0 after login. Now, I see app logs and just before isAuthenticated becomes false after true, there is an error in the logs that looks likes this.
2023-10-09T19:59:51.260Z refetching token failed [v2]
2023-10-09T19:59:51.260Z refetching token failed [v2]
89 replies
CCConvex Community
Created by fay on 5/20/2023 in #support-community
isAuthenticated from useConvexAuth flashes true, lands at false, even though auth0 is authenticated
still same, no extra additional information
89 replies
CCConvex Community
Created by fay on 5/20/2023 in #support-community
isAuthenticated from useConvexAuth flashes true, lands at false, even though auth0 is authenticated
tried with and without verbose.
89 replies
CCConvex Community
Created by fay on 5/20/2023 in #support-community
isAuthenticated from useConvexAuth flashes true, lands at false, even though auth0 is authenticated
Here you go!
import React from 'react';
import { createRoot } from 'react-dom/client';

import { Auth0Provider } from '@auth0/auth0-react';

import { ConvexReactClient } from 'convex/react';
import { ConvexProviderWithAuth0 } from "convex/react-auth0";

import store from './redux/store';
import App from './App';

const convex = new ConvexReactClient(import.meta.env.VITE_CONVEX_URL, { verbose: true },
);

const AUTH0_CLIENT_ID = import.meta.env.VITE_AUTH0_CLIENT_ID;
const AUTH0_DOMAIN = import.meta.env.VITE_AUTH0_DOMAIN;

const root = document.getElementById('root');

createRoot(root).render(
<Auth0Provider
domain={AUTH0_DOMAIN}
clientId={AUTH0_CLIENT_ID}
authorizationParams={{
redirect_uri:
typeof window === "undefined" ? undefined : window.location.origin,
}}
useRefreshTokens={true}
cacheLocation="localstorage"
>
<ConvexProviderWithAuth0 client={convex}>
<App />
</ConvexProviderWithAuth0>
</Auth0Provider>

);
import React from 'react';
import { createRoot } from 'react-dom/client';

import { Auth0Provider } from '@auth0/auth0-react';

import { ConvexReactClient } from 'convex/react';
import { ConvexProviderWithAuth0 } from "convex/react-auth0";

import store from './redux/store';
import App from './App';

const convex = new ConvexReactClient(import.meta.env.VITE_CONVEX_URL, { verbose: true },
);

const AUTH0_CLIENT_ID = import.meta.env.VITE_AUTH0_CLIENT_ID;
const AUTH0_DOMAIN = import.meta.env.VITE_AUTH0_DOMAIN;

const root = document.getElementById('root');

createRoot(root).render(
<Auth0Provider
domain={AUTH0_DOMAIN}
clientId={AUTH0_CLIENT_ID}
authorizationParams={{
redirect_uri:
typeof window === "undefined" ? undefined : window.location.origin,
}}
useRefreshTokens={true}
cacheLocation="localstorage"
>
<ConvexProviderWithAuth0 client={convex}>
<App />
</ConvexProviderWithAuth0>
</Auth0Provider>

);
89 replies
CCConvex Community
Created by fay on 5/20/2023 in #support-community
isAuthenticated from useConvexAuth flashes true, lands at false, even though auth0 is authenticated
Can you pls help?
89 replies
CCConvex Community
Created by fay on 5/20/2023 in #support-community
isAuthenticated from useConvexAuth flashes true, lands at false, even though auth0 is authenticated
Here is how Auth0 is confugured
89 replies
CCConvex Community
Created by fay on 5/20/2023 in #support-community
isAuthenticated from useConvexAuth flashes true, lands at false, even though auth0 is authenticated
No description
89 replies