import { appMessages } from "@saleor/apps/messages"; import NotFoundPage from "@saleor/components/NotFoundPage"; import { useAppQuery } from "@saleor/graphql"; import useNotifier from "@saleor/hooks/useNotifier"; import React from "react"; import { useIntl } from "react-intl"; import AppPage from "../../components/AppPage"; import { appDetailsUrl, appsListPath } from "../../urls"; interface AppSettingsProps { id: string; } export const AppSettings: React.FC = ({ id }) => { const { data } = useAppQuery({ displayLoader: true, variables: { id }, }); const appExists = data?.app !== null; const notify = useNotifier(); const intl = useIntl(); if (!appExists) { return ; } return ( notify({ status: "error", text: intl.formatMessage(appMessages.failedToFetchAppSettings), }) } /> ); }; export default AppSettings;