From 2f5ce17a89014e7992b8463d6e4eda1785d04ce3 Mon Sep 17 00:00:00 2001 From: moklick Date: Tue, 23 Feb 2021 14:49:43 +0100 Subject: [PATCH] chore(wrapper): fix typo --- src/container/ReactFlow/Wrapper.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/container/ReactFlow/Wrapper.tsx b/src/container/ReactFlow/Wrapper.tsx index 44db06ac..4a41a47c 100644 --- a/src/container/ReactFlow/Wrapper.tsx +++ b/src/container/ReactFlow/Wrapper.tsx @@ -10,7 +10,7 @@ const Wrapper: FC = ({ children }) => { ]); if (isWrappedWithReactFlowProvider) { - // we need to wrap it with a fragment because t's not allowed for children to be a ReactNode + // we need to wrap it with a fragment because it's not allowed for children to be a ReactNode // https://github.com/DefinitelyTyped/DefinitelyTyped/issues/18051 return <>{children}; }