Files
AthenaFE/utils/randomApiError.ts
2025-11-02 10:08:56 +01:00

5 lines
94 B
TypeScript

export const randomApiError = () => {
const error = Math.random() > 0.5;
return error;
};