()
| 107 | } |
| 108 | |
| 109 | onLoaded () { |
| 110 | if (this.trialRequests.size()) { |
| 111 | this.trialRequest = this.trialRequests.first() |
| 112 | this.state.set({ |
| 113 | authModalInitialValues: { |
| 114 | email: __guard__(this.trialRequest != null ? this.trialRequest.get('properties') : undefined, x => x.email) |
| 115 | } |
| 116 | }) |
| 117 | } |
| 118 | this.onClickGPlusSignupButton() |
| 119 | return super.onLoaded() |
| 120 | } |
| 121 | |
| 122 | invalidateNCES () { |
| 123 | return Array.from(SCHOOL_NCES_KEYS).map((key) => |
nothing calls this directly
no test coverage detected