diff --git a/packages/mux-uploader-react/src/mux-uploader-pause.tsx b/packages/mux-uploader-react/src/mux-uploader-pause.tsx index 99d1e640e..d0a745969 100644 --- a/packages/mux-uploader-react/src/mux-uploader-pause.tsx +++ b/packages/mux-uploader-react/src/mux-uploader-pause.tsx @@ -12,9 +12,9 @@ export type MuxUploaderPauseProps = { children?: React.ReactNode; } & Omit, HTMLElement>, 'ref'>; -const MuxUploaderRetryInternal = React.forwardRef( +const MuxUploaderPauseInternal = React.forwardRef( ({ children, ...props }, ref) => { - return React.createElement('mux-uploader-retry', toNativeProps({ ...props, ref }), children); + return React.createElement('mux-uploader-pause', toNativeProps({ ...props, ref }), children); } ); @@ -22,7 +22,7 @@ const MuxUploaderPause = React.forwardRef(null); const uploaderPauseRef = useCombinedRefs(innerUploaderPauseRef, ref); - return ; + return ; }); export default MuxUploaderPause;