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
{{ message }}
This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
this is actually more than superficial; in my case it's causing typescript compiler errors because enums are exported before the 2nd relay-runtime import which causes Line 5:1: Import in body of module; reorder to top import/first"
I have the same problem with @chrisdostert.
It seems to be happening when using Enum.
import{ReaderFragment}from"relay-runtime";exporttypeHogeTypeEnum="foo"|"bar"|"%future added value";// Line 5:1: Import in body of module; reorder to top import/firstimport{FragmentRefs}from"relay-runtime";exporttypeHoge_query={readonlyhoge: {readonlytype: HogeTypeEnum;
...
}}
Check this
It would be nice if these two imports
were just one
The text was updated successfully, but these errors were encountered: