02 / For instance

You asked for pagination.

bash
# you typed:
> add pagination to the users list

# what the agent shipped:
git diff --stat

app/routes/users.tsx       | 47 ++++++++++++++-----    # rewritten
app/lib/fetcher.ts         | 23 --------------         # deleted
app/lib/queries.ts         | 38 ++++++++++++++++++     # new
app/components/Table.tsx   | 12 +++++-----             # useMemo removed
app/routes/users.test.tsx  | 31 ++++++++++++------     # "fixed" to pass
package.json               |  1 +                      # + @tanstack/react-query

6 files changed, 96 insertions(+), 56 deletions(-)
Five files you didn't ask about. One new dependency. A week later, nobody remembers why.
Back to portfolio03 / 21