componentDidMount()

in src/pages/TermsOfService/TermsOfService.js [55:61]


	componentDidMount() {
		let redirect = new URLSearchParams(window.location.search).get("redirect") || null;
		if (redirect) this.setState({ redirect: redirect });

		this.setState({ tosCurrentVersion: I18n.get("TERMS_OF_SERVICE_VERSION_ID") || 0 })
		this.checkTos();
	}