Skip to content

Commit 0b4fb62

Browse files
authored
Update index.tsx
Fixed unassigned ticket call to correct API endpoint as per https://www.reddit.com/r/selfhosted/comments/1bo4ert/comment/kwneu6j/
1 parent 146263f commit 0b4fb62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/client/pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export default function Home() {
5959
}
6060

6161
async function getUnassginedTickets() {
62-
await fetch(`/api/v1/data/tickets/open`, {
62+
await fetch(`/api/v1/data/tickets/unassigned`, {
6363
method: "GET",
6464
headers: {
6565
Authorization: `Bearer ${token}`,

0 commit comments

Comments
 (0)