fix: error message null

This commit is contained in:
GyDi 2023-05-19 10:53:11 +08:00 committed by GitHub
parent 0b24be7532
commit d468cb051d

View File

@ -115,7 +115,7 @@ export const ProfileViewer = forwardRef<ProfileViewerRef, Props>(
fileDataRef.current = null; fileDataRef.current = null;
props.onChange(); props.onChange();
} catch (err: any) { } catch (err: any) {
Notice.error(err.message); Notice.error(err.message || err.toString());
} }
}) })
); );