니콜라스
니콜라스
Any workaround for this?
If anybody is having trouble styling the headings just set the text properties to null. For some reason this didn't change the color: `heading1: { fontSize: 36, color: "white" }`...
I'm using schema:public and it does not seem to have any effect, I'm still getting: ```The provided schema "default$default" does not exist. The following are available: public, management```
@awalias so if the user is trying to create an account, when they already have one, is there a way to let me know?
Facing the same bug. Did you find a workaround @willsmanley ?
Maybe a note should be added in the "Notes" of the "Feature support matrix" for Claude Desktop, spent a bunch of time wondering what was wrong.
Before this is merged, is there any workaround?
This issue persist on `0.5.1` @sydney-runkle ```py from pydantic import BaseModel from langgraph.graph import StateGraph def something(): pass graph = StateGraph(BaseModel) graph.add_node("node_1", something) graph.add_node("node_2", something) graph.add_node("node_3", something) graph.add_edge("__start__", "node_1") graph.add_edge("node_1",...