Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions semcore/d3-chart/src/a11y/PlotA11yView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export type A11yViewProps = {
onCloseHandler: () => void;
};

export const PlotA11yView: React.FC<A11yViewProps> = ({
export function PlotA11yView({
id,
payload: providedData,
hints,
Expand All @@ -35,7 +35,7 @@ export const PlotA11yView: React.FC<A11yViewProps> = ({
config: providedConfig,
locale,
onCloseHandler,
}) => {
}: A11yViewProps) {
const SPlotA11yView = Root;
const translations = useAsyncI18nMessages(localizedMessages, locale);
const intl = React.useMemo(
Expand Down
Loading