Skip to content

Commit 4b951c4

Browse files
committed
Don't add a count
1 parent 3fcb17f commit 4b951c4

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

frontend/src/routes/Home.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,10 +157,7 @@ export default function Home() {
157157

158158
useEffect(() => {
159159
Promise.all([
160-
GET(
161-
("/current_job" +
162-
(loadCount === 0 ? "" : "?count=" + loadCount)) as "/current_job"
163-
)
160+
GET("/current_job")
164161
.catch((error) => {
165162
console.error("Error getting current job", error);
166163
return { data: { job: null } };

0 commit comments

Comments
 (0)