feat: remove workflow file type

This commit is contained in:
karishmas6
2024-10-17 15:28:52 +05:30
parent b66e9260f0
commit 066cce64f5

View File

@@ -32,7 +32,7 @@ export const getStoredRuns = async (): Promise<string[] | null> => {
}
};
export const getStoredRecording = async (id: string): Promise<WorkflowFile | null> => {
export const getStoredRecording = async (id: string) => {
try {
const response = await axios.get(`http://localhost:8080/storage/recordings/${id}`);
if (response.status === 200) {