Merge branch 'dev' into fix/cookie-config

This commit is contained in:
Nicholas Tindle
2025-06-16 10:37:11 -05:00
committed by GitHub
3 changed files with 6 additions and 2 deletions

View File

@@ -655,7 +655,10 @@ async def get_graphs(
graph_models = []
for graph in graphs:
try:
graph_models.append(GraphModel.from_db(graph))
graph_model = GraphModel.from_db(graph)
# Trigger serialization to validate that the graph is well formed.
graph_model.model_dump()
graph_models.append(graph_model)
except Exception as e:
logger.error(f"Error processing graph {graph.id}: {e}")
continue

View File

@@ -32,7 +32,7 @@ export const StoreCard: React.FC<StoreCardProps> = ({
return (
<div
className="flex h-[27rem] w-full max-w-md cursor-pointer flex-col items-start rounded-3xl bg-white transition-all duration-300 hover:shadow-lg dark:bg-transparent dark:hover:shadow-gray-700"
className="flex h-[27rem] w-full max-w-md cursor-pointer flex-col items-start rounded-3xl bg-background transition-all duration-300 hover:shadow-lg dark:hover:shadow-gray-700"
onClick={handleClick}
data-testid="store-card"
role="button"

View File

@@ -5,3 +5,4 @@ pymdown-extensions
mkdocs-git-revision-date-localized-plugin
zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability
urllib3>=2.2.2 # not directly required, pinned by Snyk to avoid a vulnerability
requests>=2.32.4 # not directly required, pinned by Snyk to avoid a vulnerability