From bc55bf6412cfaf89a2175f5b0c2973a61d871047 Mon Sep 17 00:00:00 2001 From: zqhhenshuai <50853574+zqhhenshuai@users.noreply.github.com> Date: Thu, 8 Jan 2026 21:22:50 +0800 Subject: [PATCH] Fix syntax error: missing 'y' key in project settings Fixed the resolution object from {x: 1920, 1080} to {x: 1920, y: 1080}, which was causing build errors. --- rive-explanation-video/src/project.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rive-explanation-video/src/project.tsx b/rive-explanation-video/src/project.tsx index 48eaebc..7823927 100644 --- a/rive-explanation-video/src/project.tsx +++ b/rive-explanation-video/src/project.tsx @@ -228,7 +228,7 @@ export default makeProject({ settings: { // Example settings: shared: { - size: {x: 1920, 1080}, + size: {x: 1920, y: 1080}, }, }, });