feat: remove return type

This commit is contained in:
karishmas6
2024-10-23 02:36:04 +05:30
parent c21a7390f7
commit 51947a1ccc

View File

@@ -148,7 +148,7 @@ export const scheduleStoredRecording = async (id: string, settings: ScheduleSett
}
}
export const getSchedule = async (id: string): Promise<ScheduleSettings | null> => {
export const getSchedule = async (id: string) => {
try {
const response = await axios.get(`http://localhost:8080/storage/schedule/${id}`);
if (response.status === 200) {