Skip to content

Commit

Permalink
remove forward slash from server endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech committed Jan 8, 2024
1 parent 448b735 commit ef667a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/pages/home/app-card/app-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export const AppCard = ({
const [isEditOpen, setIsEditOpen] = useState(false);

const startRequest = async ({ id }: AppQueryPostProps) => {
const response = await axios.post(`/server/${id}/`);
const response = await axios.post(`/server/${id}`);
return response;
};

Expand Down

0 comments on commit ef667a8

Please sign in to comment.