2023-05-05 17:36:13 +00:00
|
|
|
import React from "react";
|
|
|
|
|
import classnames from "classnames";
|
|
|
|
|
|
|
|
|
|
import DataError from "components/DataError";
|
|
|
|
|
|
|
|
|
|
const baseClass = "mdm-sso-error";
|
|
|
|
|
|
|
|
|
|
interface ISSOErrorProps {
|
|
|
|
|
className?: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const SSOError = ({ className }: ISSOErrorProps) => {
|
|
|
|
|
const classNames = classnames(baseClass, className);
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<DataError className={classNames}>
|
2023-07-26 17:20:36 +00:00
|
|
|
<p>
|
|
|
|
|
Select <strong>Cancel</strong> and try again. If this keeps happening,
|
|
|
|
|
please contact IT support.
|
|
|
|
|
</p>
|
2023-05-05 17:36:13 +00:00
|
|
|
</DataError>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default SSOError;
|