Skip to content

Commit 722b532

Browse files
justin808claude
andcommitted
Fix Prettier formatting in LazyApolloGraphQL
Wrap the long line for proper formatting per Prettier rules. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 33c5127 commit 722b532

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

react_on_rails_pro/spec/dummy/client/app/components/LazyApolloGraphQL.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,9 @@ const UserPanel = () => {
7777
</button>
7878

7979
{updating && <div>Updating...</div>}
80-
{updateError && <div style={{ color: 'red' }}>Error while updating User: {JSON.stringify(updateError)}</div>}
80+
{updateError && (
81+
<div style={{ color: 'red' }}>Error while updating User: {JSON.stringify(updateError)}</div>
82+
)}
8183
</div>
8284
);
8385
};

0 commit comments

Comments
 (0)