Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-scales committed Apr 6, 2024
1 parent 968cc35 commit 40eaf79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FU.SPA/src/components/Chat.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function Chat({ chatId }) {
useEffect(() => {
const initializeChat = async () => {
try {
const messages = await getMessages(chatId, 1, limit);
var messages = await getMessages(chatId, 1, limit);
if (!messages) {
messages = [];
}
Expand Down

0 comments on commit 40eaf79

Please sign in to comment.