File tree 1 file changed +6
-3
lines changed
packages/relay-runtime/handlers/connection
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,8 @@ const DeleteEdgeHandler = {
63
63
if ( connection == null ) {
64
64
warning (
65
65
false ,
66
- `[Relay][Mutation] The connection with id '${ connectionID } ' doesn't exist.` ,
66
+ "[Relay] The connection with id `%s` doesn't exist." ,
67
+ connectionID ,
67
68
) ;
68
69
continue ;
69
70
}
@@ -135,7 +136,8 @@ function edgeUpdater(
135
136
if ( connection == null ) {
136
137
warning (
137
138
false ,
138
- `[Relay][Mutation] The connection with id '${ connectionID } ' doesn't exist.` ,
139
+ "[Relay] The connection with id `%s` doesn't exist." ,
140
+ connectionID ,
139
141
) ;
140
142
continue ;
141
143
}
@@ -205,7 +207,8 @@ function nodeUpdater(
205
207
if ( connection == null ) {
206
208
warning (
207
209
false ,
208
- `[Relay][Mutation] The connection with id '${ connectionID } ' doesn't exist.` ,
210
+ "[Relay] The connection with id `%s` doesn't exist." ,
211
+ connectionID ,
209
212
) ;
210
213
continue ;
211
214
}
You can’t perform that action at this time.
0 commit comments