ChambreNoire
ChambreNoire
I believe this is the source of my problem when using mergerino in conjunction with meiosis-setup and union-type. If I place a union-type in meiosis state and update it later...
@ArturBaybulatov did you get anywhere with this in the end ? I'm facing a similar issue... Cheers
I'm experiencing something similar: ``` const title = `${title} something` return ( Edit {{title}} ) // where myKey=Edit Entity{{title}} ``` yields: `TS2322: Type '{ title: string; }' is not assignable...
@stoicflame yup that's exactly it, just basic getters & setters: ``` public T getProfile() { return this.profile; } public void setProfile(T profile) { this.profile = profile; } ``` Thanks