### Which component is affected? Qwik optimizer (rust) ### Describe the bug if prop is an aliased string, the optimizer does not change props to a single variable Doesn't work: ``` const Input = component$( ({ 'test': abcd}) => { return <div></div>; } ); ``` Works: ``` const Input = component$( ({ test: abcd}) => { return <div></div>; } ); ``` ### Reproduction https://qwik.dev/playground/#f=Q040lhYkJxqI7yDVrS1ymgFaoFGtoF4CLHTVrRQSk5JTauF%2BR6QjUJMC0rCwBorXcgHdREo6hIYexHq4pzStRxPi0EuIAA ### Steps to reproduce _No response_ ### System Info ```shell v2 ``` ### Additional Information _No response_