implement done button

This commit is contained in:
Sara
2023-12-13 16:45:49 +01:00
parent 66d4470306
commit 47762e9b05
6 changed files with 67 additions and 13 deletions

View File

@@ -8,11 +8,11 @@ import { shouldShowError } from "../../lib/errorUtils";
type ErrorTranscript = {
error: Error;
loading: false;
response: any;
response: null;
};
type LoadingTranscript = {
response: any;
response: null;
loading: true;
error: false;
};