David Dakhovich
David Dakhovich
> Hello, I found that simply removing this line of style from the message component would solve the problem.  Hi, so how can I provide a quick fix, or...
> Can you please provide a reproduction showing your issue please. That will help us investigate. https://codesandbox.io/p/sandbox/eager-estrela-et7p1m
Okay, the problem is - if the parent block is "flex", - page break doesn't work.
> ☁️ I understand that the customer use case is valid and that we probably need to make a change to `clerkClient.verifyToken(token, options)` to support execution without passing `options` but...
There is a problem with env "CLERK_SECRET_KEY". If I add it manually, it works: ```ts import { clerkClient } from "@clerk/clerk-sdk-node"; export const clerkAuth = async (token: string | null)...
@LekoArts Minimal reproduction: https://github.com/shadoworion/clerk-key-bug
I see that If I define global client it doesn't work in "verifyToken" ```ts import { createClerkClient } from "@clerk/clerk-sdk-node"; export const clerkClient = createClerkClient({ secretKey: String(process.env["CLERK_SECRET_KEY"]), }); export const...
@panteliselef Hi, yes, it works now! Can you also change "options" argument to optional? `(property) verifyToken: (token: string, options: VerifyTokenOptions) => Promise` There is no need to add this empty...
> Did you run `bun install`? Sure
> add this deps on your local `devDependencies` > > ```json > { > "aws-sdk": "^2.1526.0", > "better-sqlite3": "^9.2.2", > "mock-aws-s3": "^4.0.2", > "mysql": "^2.18.1", > "mysql2": "^3.6.5", > "nock":...