Skip to content

Commit

Permalink
Fixed Messages Missing MergeProps
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrogenous committed Mar 19, 2024
1 parent 22c459a commit 4c1f8fe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/lib/messages/UIMessage.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ import { InfoCircleIcon } from '../icons/infocircle';
import { TimesIcon } from '../icons/times';
import { TimesCircleIcon } from '../icons/timescircle';
import { Ripple } from '../ripple/Ripple';
import { classNames, IconUtils, mergeProps } from '../utils/Utils';
import { classNames, IconUtils } from '../utils/Utils';
import { useMergeProps } from '../hooks/Hooks';

export const UIMessage = React.memo(
React.forwardRef((props, ref) => {
const mergeProps = useMergeProps();
const {
message: messageInfo,
metaData: parentMetaData,
Expand Down

0 comments on commit 4c1f8fe

Please sign in to comment.