Looking for a little help to speed up my personal project.
I have a list that I need to add items to when they are clicked on in a repeating group.
What would be the most effecient way to do so?
Currently if users are clicking to add them, it can lag behind, items can be missed, their actions aren’t instant and just make the app feel slow. It seems obvious that this is because it has to run a workflow when every item is clicked.
I am currently using a data type as a place to store them all.
Users are creating a “thing”
This “thing” holds “items”. The items are added from their own option set as they contain information that doesn’t change. As ‘items’ are in the ‘thing’ I am calculating a total using the sum of all ‘items’ + an input and using a number / the sum of those two calculations.
Currently a user clicks on the ‘item’ and a workflow runs to add or remove it from the list.
I feel I’m missing a really simple fix (possible custom states).