You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the main.js and figma.service.ts file you have to change
__this.url = new RegExp('/file/([^/]+)/').exec(t.url)[1];
to
__this.url = new RegExp('/design/([^/]+)/').exec(t.url)[1];
The new url structure of figma has changed the file to design to capture the file id
The text was updated successfully, but these errors were encountered:
Hi @cassandragoodby I pushed the change in the service file to master.
It s been a while since I used Figma and in order to test it myself I would need to redo the node setup, compile the dist folder and test in Figma.
So it would be great if you can confirm it is working as expected and I do not have to do all the above...
:-)
It did not propagate from the src file to the unpacked file. Do you remember the steps you took to generate the unpacked version from the angular project? I'd be happy to run them locally, test and then upload to github if you recall the process
In the main.js and figma.service.ts file you have to change
__this.url = new RegExp('/file/([^/]+)/').exec(t.url)[1];
to
__this.url = new RegExp('/design/([^/]+)/').exec(t.url)[1];
The new url structure of figma has changed the file to design to capture the file id
The text was updated successfully, but these errors were encountered: