Skip to content

Commit

Permalink
hotfix: 배포 시 HealthTest 에러 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
Arooming committed Jun 13, 2024
1 parent b7d68af commit f2e79dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HealthTest.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface TestType {
function HealthTest() {
const [data, setData] = useState<TestType | undefined>();
const getHealthCheck = async () => {
const data = await api.get('/actuator/health');
const data = await api().get('/actuator/health');
setData(data.data);
};

Expand Down

0 comments on commit f2e79dd

Please sign in to comment.