File tree 1 file changed +3
-18
lines changed
1 file changed +3
-18
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ import { consume } from 'ember-provide-consume-context';
20
20
import {
21
21
type ResolvedCodeRef ,
22
22
type Loader ,
23
- loadCard ,
24
23
CardURLContextName ,
25
24
} from ' @cardstack/runtime-common' ;
26
25
import { not } from ' @cardstack/boxel-ui/helpers' ;
@@ -94,28 +93,14 @@ class EditView extends Component<typeof CodeRefField> {
94
93
let name = parts .pop ()! ;
95
94
let module = parts .join (' /' );
96
95
try {
97
- if (moduleIsUrlLike (module )) {
98
- await loadCard (
99
- { module , name },
100
- {
101
- loader: myLoader (),
102
- relativeTo: this .cardURL ? new URL (this .cardURL ) : undefined ,
103
- },
104
- );
96
+ let code = (await import (module ))[name ];
97
+ if (code ) {
105
98
this .validationState = ' valid' ;
106
99
if (! opts ?.checkOnly ) {
107
100
this .args .set ({ module , name });
108
101
}
109
102
} else {
110
- let code = (await import (module ))[name ];
111
- if (code ) {
112
- this .validationState = ' valid' ;
113
- if (! opts ?.checkOnly ) {
114
- this .args .set ({ module , name });
115
- }
116
- } else {
117
- this .validationState = ' invalid' ;
118
- }
103
+ this .validationState = ' invalid' ;
119
104
}
120
105
} catch (err ) {
121
106
this .validationState = ' invalid' ;
You can’t perform that action at this time.
0 commit comments