diff options
author | Sebastian <sebasjm@gmail.com> | 2022-10-27 10:06:03 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2022-10-27 10:06:03 -0300 |
commit | 4e4f526fa587f49c97e611d9c15323566c6c366f (patch) | |
tree | af4600c3ba48f9af80427e9c72f333bd1c85c9ae | |
parent | af29a02e5b08c05ffe41fc8eae5775a385d85173 (diff) |
fix FTBFS
-rw-r--r-- | packages/anastasis-webui/src/utils/index.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/anastasis-webui/src/utils/index.tsx b/packages/anastasis-webui/src/utils/index.tsx index a70348e46..78973e38f 100644 --- 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; } |