Skip to content
This repository was archived by the owner on Jun 26, 2020. It is now read-only.

Commit df647ee

Browse files
committed
[easy] Sort keys in object
Just sort attributes to reduce merge conflicts down the road.
1 parent d53bf82 commit df647ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/Relay/installRelayHook.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,11 @@ function installRelayHook(window: Object) {
7676
);
7777
return {
7878
id: id,
79-
type: type,
79+
name: request.getDebugName(),
8080
start: Date.now(),
8181
text: request.getQueryString(),
82+
type: type,
8283
variables: request.getVariables(),
83-
name: request.getDebugName(),
8484
};
8585
}
8686

0 commit comments

Comments
 (0)