diff --git a/src/components/views/Midi/LiveData/lightingIntensity.js b/src/components/views/Midi/LiveData/lightingIntensity.js index a7df907fb..15b99f490 100644 --- a/src/components/views/Midi/LiveData/lightingIntensity.js +++ b/src/components/views/Midi/LiveData/lightingIntensity.js @@ -27,7 +27,7 @@ const LightingIntensity = ({simulatorId, value, setValue}) => { valueSet.current = true; setTimeout(() => { valueSet.current = false; - }, 1000 / 30); + }, 1000 / 10); setValue(intensity); }, [intensity, setValue]); diff --git a/src/mocks/data/clients.js b/src/mocks/data/clients.js index f7b14c2b9..363eb19fe 100644 --- a/src/mocks/data/clients.js +++ b/src/mocks/data/clients.js @@ -18,6 +18,11 @@ export default [ description: null, __typename: "Station", }, + currentCard: { + name: "Test", + component: "TestCard", + __typename: "Card", + }, __typename: "Client", }, { @@ -39,6 +44,11 @@ export default [ description: "", __typename: "Station", }, + currentCard: { + name: "Test", + component: "TestCard", + __typename: "Card", + }, __typename: "Client", }, ];