componentWillReceiveProps({ weddingProfile }: PropsType) {
    if (weddingProfile.id !== this.state.weddingProfile.id) {
      this.setState({ weddingProfile: { ...weddingProfile } });
    }
  }