I have a design system that uses 2 modes, and have recently added 7 more modes. They show properly in the Variables panel (now split between two Collections), but when I go to select them in the Variable Modes dropdown, I only see the initial 2.
Do modes only register the first created Collection? If that theory holds true, it seems like my 9 mode example below should only show 1 mode in the dropdown, and it’s still showing the initial 2.
My 2 mode structure:
themes (collection){
theme1 (mode){...},
theme2 (mode){...}
}
My 9 mode structure:
(For clarity, yes, theme2 moved from one collection to another below)
themes (collection){
theme1 (mode){...}
}
variations (collection){
theme2 (mode){...},
theme3 (mode){...},
theme4 (mode){...},
theme5 (mode){...},
theme6 (mode){...},
theme7 (mode){...},
theme8 (mode){...},
theme9 (mode){...}
}
I’m using Token Studio to create the variables, but that doesn’t seem to have an impact on the result.
Thank you!