On initial opening of the plugin it appears one can set a height less than 100 for the plugin UI as such:
figma.showUI(__html__, {width: 600, height: 48})
// results in a 600x48 window
At some future point, I resize the plugin ui to a height of 480, perform an action, and then some time later want to resize the plugin back to 48. It appears the lowest resize height value is 100.
figma.ui.resize(600, 48)
// results in a 600x100 window
This seems strange as you can instantiate the ui at a height lower than 100, but on resize you cant? Am I missing something here?