Rebaseline goldens (#559)

This commit is contained in:
Will Chen
2025-07-03 11:38:59 -07:00
committed by GitHub
parent f60a6c4829
commit 8260aa86e2
8 changed files with 10 additions and 18 deletions

View File

@@ -2088,10 +2088,10 @@ end
} }
=== ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png === === ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png ===
[binary hash="1b5002b74a5500e697298ced06ca2811ac33f2771f236f3c720ff23243890530"] [binary hash="1b5002b74a5500e697298ced06ca2811ac33f2771f236f3c720ff23243890530"]
=== ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png === === ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png ===
[binary hash="1b5002b74a5500e697298ced06ca2811ac33f2771f236f3c720ff23243890530"] [binary hash="1b5002b74a5500e697298ced06ca2811ac33f2771f236f3c720ff23243890530"]
=== ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png === === ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png ===
[binary hash="1b5002b74a5500e697298ced06ca2811ac33f2771f236f3c720ff23243890530"] [binary hash="1b5002b74a5500e697298ced06ca2811ac33f2771f236f3c720ff23243890530"]

View File

@@ -396,7 +396,6 @@ finalMainTsxFileWithError();
</dyad-write> </dyad-write>
EOM EOM
=== ===
role: user role: user
message: Fix these 1 TypeScript compile-time error: message: Fix these 1 TypeScript compile-time error:

View File

@@ -405,7 +405,6 @@ finalMainTsxFileWithError();
</dyad-write> </dyad-write>
EOM EOM
=== ===
role: user role: user
message: Fix these 1 TypeScript compile-time error: message: Fix these 1 TypeScript compile-time error:
@@ -416,8 +415,7 @@ Please fix all errors in a concise way.
=== ===
role: assistant role: assistant
message: message: <dyad-write path="src/bad-file.ts" description="Fix remaining error.">
<dyad-write path="src/bad-file.ts" description="Fix remaining error.">
// Import doesn't exist // Import doesn't exist
// import NonExistentClass from 'non-existent-class'; // import NonExistentClass from 'non-existent-class';

View File

@@ -415,7 +415,6 @@ x.nonExistentMethod();
EOM EOM
=== ===
role: user role: user
message: Fix these 2 TypeScript compile-time errors: message: Fix these 2 TypeScript compile-time errors:

View File

@@ -417,7 +417,6 @@ x.nonExistentMethod();
EOM EOM
=== ===
role: user role: user
message: Fix these 2 TypeScript compile-time errors: message: Fix these 2 TypeScript compile-time errors:
@@ -429,8 +428,7 @@ Please fix all errors in a concise way.
=== ===
role: assistant role: assistant
message: message: <dyad-write path="src/bad-file.ts" description="Fix 2 errors and introduce a new error.">
<dyad-write path="src/bad-file.ts" description="Fix 2 errors and introduce a new error.">
// Import doesn't exist // Import doesn't exist
// import NonExistentClass from 'non-existent-class'; // import NonExistentClass from 'non-existent-class';

View File

@@ -417,7 +417,6 @@ import NonExistentClass5 from 'non-existent-class';
EOM EOM
=== ===
role: user role: user
message: Fix these 5 TypeScript compile-time errors: message: Fix these 5 TypeScript compile-time errors:

View File

@@ -421,7 +421,6 @@ import NonExistentClass5 from 'non-existent-class';
EOM EOM
=== ===
role: user role: user
message: Fix these 5 TypeScript compile-time errors: message: Fix these 5 TypeScript compile-time errors:
@@ -436,8 +435,7 @@ Please fix all errors in a concise way.
=== ===
role: assistant role: assistant
message: message: <dyad-write path="file1.txt">
<dyad-write path="file1.txt">
A file (2) A file (2)
</dyad-write> </dyad-write>
More More

View File

@@ -311,11 +311,11 @@ To ensure consistency and leverage the chosen stack effectively, please follow t
* **Complex Global State**: If application state becomes significantly complex, discuss the potential introduction of a dedicated state management library (e.g., Zustand, Jotai) before implementing. * **Complex Global State**: If application state becomes significantly complex, discuss the potential introduction of a dedicated state management library (e.g., Zustand, Jotai) before implementing.
6. **Routing**: 6. **Routing**:
* Utilize the Next.js App Router (file-system based routing in the `app/` directory). * Utilize the Next.js App Router (file-system based routing in the `src/app/` directory).
7. **API Calls & Data Fetching**: 7. **API Calls & Data Fetching**:
* **Client-Side**: Use the native `fetch` API or a simple wrapper around it. * **Client-Side**: Use the native `fetch` API or a simple wrapper around it.
* **Server-Side (Next.js)**: Leverage Next.js Route Handlers (in `app/api/`) or Server Actions for server-side logic and data fetching. * **Server-Side (Next.js)**: Leverage Next.js Route Handlers (in `src/app/api/`) or Server Actions for server-side logic and data fetching.
8. **Animations**: 8. **Animations**:
* Use `tailwindcss-animate` plugin and the animation utilities provided by Radix UI components. * Use `tailwindcss-animate` plugin and the animation utilities provided by Radix UI components.
@@ -339,6 +339,7 @@ To ensure consistency and leverage the chosen stack effectively, please follow t
By following these guidelines, we can build a more robust, maintainable, and consistent application. By following these guidelines, we can build a more robust, maintainable, and consistent application.
Directory names MUST be all lower-case (src/pages, src/components, etc.). File names may use mixed-case if you like. Directory names MUST be all lower-case (src/pages, src/components, etc.). File names may use mixed-case if you like.
# REMEMBER # REMEMBER