@umituz/react-native-ai-generation-content 1.17.200 → 1.17.201
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import React, { useMemo } from "react";
|
|
7
7
|
import { View } from "react-native";
|
|
8
8
|
import { useResponsive } from "@umituz/react-native-design-system";
|
|
9
|
-
import { VideoPlayer } from "@umituz/react-native-video-editor
|
|
9
|
+
import { VideoPlayer } from "@umituz/react-native-video-editor";
|
|
10
10
|
|
|
11
11
|
interface DetailVideoProps {
|
|
12
12
|
readonly videoUrl: string;
|
|
@@ -33,7 +33,7 @@ export function checkStatusForErrors(
|
|
|
33
33
|
// Check logs array for ERROR/FATAL level logs
|
|
34
34
|
const rawLogs = (status as JobStatus)?.logs;
|
|
35
35
|
const logs = Array.isArray(rawLogs) ? rawLogs : [];
|
|
36
|
-
const errorLogs = logs.filter((log) => {
|
|
36
|
+
const errorLogs = logs.filter((log: AILogEntry) => {
|
|
37
37
|
const level = String(log?.level || "").toUpperCase();
|
|
38
38
|
return level === "ERROR" || level === "FATAL";
|
|
39
39
|
});
|