import React from 'react';
import { SToastBaseText } from '../../../../s-components/s-toast-base-text';
import { UNBREAKABLE_SPACE } from '../../../../constants';

type TProps = {};

export const ProfileError: React.FC<TProps> = () => {
  return (
    <SToastBaseText>
      We are experiencing some problems with{UNBREAKABLE_SPACE}loading
      notification settings.{'\n'}Please try refreshing the
      {UNBREAKABLE_SPACE}
      page.
    </SToastBaseText>
  );
};
