chat-with-gpt
chat-with-gpt copied to clipboard
Ordered lists start at 2?
Is this the desired behavior? Should the list start at 1 by default?

Changing the below line seemed to have worked
app/src/components/markdown.tsx
- <ol start={start ?? 1} style={{ counterReset: list-item ${(start || 1)} }}>
+ <ol start={start ?? 0} style={{ counterReset: list-item ${(start || 0)} }}>