Skip to content

Commit

Permalink
reverse stars order
Browse files Browse the repository at this point in the history
  • Loading branch information
Andcool-Systems committed Oct 20, 2024
1 parent a0e4996 commit e0150d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/me/stars/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const Main = () => {
useEffect(() => {
authApi.get("user/me/stars").then((response) => {
if (response.status === 200) {
setData(response.data as Bandage[]);
setData((response.data as Bandage[]).reverse());
}
})
}, []);
Expand Down

0 comments on commit e0150d9

Please sign in to comment.