commit 4e4f526fa587f49c97e611d9c15323566c6c366f parent af29a02e5b08c05ffe41fc8eae5775a385d85173 Author: Sebastian <sebasjm@gmail.com> Date: Thu, 27 Oct 2022 10:06:03 -0300 fix FTBFS Diffstat:
| M | packages/anastasis-webui/src/utils/index.tsx | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/packages/anastasis-webui/src/utils/index.tsx b/packages/anastasis-webui/src/utils/index.tsx @@ -327,6 +327,6 @@ export function compose<SType extends { status: string }, PType>( const c = vs[s] as unknown as StateFunc<SType>; return c(state); }; - Component.name = `${name}`; + // Component.name = `${name}`; return Component; }