Skip to content

Commit

Permalink
Merge branch 'master' into platform/angela/16191/always_execute_send
Browse files Browse the repository at this point in the history
  • Loading branch information
adegolier authored Oct 23, 2024
2 parents 9ea9232 + e21680e commit 4d016f5
Show file tree
Hide file tree
Showing 24 changed files with 4,721 additions and 3,857 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: UP Migrate Receiver - Move to Production
name: UP Migrate Receiver - Move to Production and Monitor
about: This is the third and final step in migrating a STLT to the UP
title: "[name of STLT] - UP Migration - Move to Production"
title: "[name of STLT] - UP Migration - Move to Production and Monitor"
labels: onboarding-ops, receiver
assignees: ''

Expand Down
4 changes: 4 additions & 0 deletions frontend-react/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,16 @@ module.exports = {
/* Custom project rules */
"no-console": ["error", { allow: ["warn", "error", "info", "trace"] }],
"@typescript-eslint/no-explicit-any": ["off"],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
vars: "all",
varsIgnorePattern: "^_",
args: "after-used",
argsIgnorePattern: "^_",
caughtErrors: "all",
caughtErrorsIgnorePattern: "^_",
},
],
"import/order": [
Expand All @@ -141,5 +144,6 @@ module.exports = {
],
"sort-imports": ["error", { ignoreCase: true, ignoreDeclarationSort: true }],
"@typescript-eslint/prefer-nullish-coalescing": ["error"],
"@typescript-eslint/no-empty-object-type": ["error", { allowInterfaces: "always" }],
},
};
4 changes: 2 additions & 2 deletions frontend-react/e2e/helpers/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export function fromDateWithTime(date: string, time?: string) {
.substring(0, time.length - 2)
.split(":")
.map(Number);
hours = hours + (time.indexOf("pm") !== -1 ? 12 : 0);
hours = hours + (time.includes("pm") ? 12 : 0);
fromDateTime.setHours(hours, minutes, 0, 0);
} else {
fromDateTime.setHours(0, 0, 0);
Expand All @@ -132,7 +132,7 @@ export function toDateWithTime(date: string, time?: string) {
.substring(0, time.length - 2)
.split(":")
.map(Number);
hours = hours + (time.indexOf("pm") !== -1 ? 12 : 0);
hours = hours + (time.includes("pm") ? 12 : 0);
toDateTime.setHours(hours, minutes, 0, 0);
} else {
toDateTime.setHours(23, 59, 0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ test.describe("Evaluate links on public facing pages", { tag: "@warning" }, () =
}

return { url, status: 200 };
} catch (error) {
} catch (_error) {
warnings.push({ url, message: "Internal link: Page error" });
return { url, status: 400 };
} finally {
Expand Down
66 changes: 34 additions & 32 deletions frontend-react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"type": "module",
"npmClient": "yarn",
"dependencies": {
"@microsoft/applicationinsights-react-js": "^17.3.2",
"@microsoft/applicationinsights-web": "^3.3.2",
"@microsoft/applicationinsights-react-js": "^17.3.3",
"@microsoft/applicationinsights-web": "^3.3.3",
"@okta/okta-react": "^6.9.0",
"@okta/okta-signin-widget": "^7.24.2",
"@rest-hooks/rest": "^3.0.3",
Expand All @@ -18,7 +18,7 @@
"classnames": "^2.5.1",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.2.0",
"dompurify": "^3.1.6",
"dompurify": "^3.1.7",
"downloadjs": "^1.4.7",
"export-to-csv-fix-source-map": "^0.2.1",
"focus-trap-react": "^10.3.0",
Expand Down Expand Up @@ -112,21 +112,21 @@
"devDependencies": {
"@mdx-js/react": "^3.1.0",
"@mdx-js/rollup": "^3.1.0",
"@playwright/test": "^1.47.0",
"@playwright/test": "^1.48.1",
"@rest-hooks/test": "^7.3.1",
"@storybook/addon-a11y": "^8.2.9",
"@storybook/addon-actions": "^8.2.9",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/components": "^8.2.9",
"@storybook/core-events": "^8.2.9",
"@storybook/addon-a11y": "^8.3.6",
"@storybook/addon-actions": "^8.3.6",
"@storybook/addon-essentials": "^8.3.6",
"@storybook/addon-interactions": "^8.3.6",
"@storybook/addon-links": "^8.3.6",
"@storybook/blocks": "^8.3.6",
"@storybook/components": "^8.3.6",
"@storybook/core-events": "^8.3.6",
"@storybook/mdx2-csf": "1.1.0",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/react": "^8.3.6",
"@storybook/react-vite": "^8.3.6",
"@storybook/testing-library": "^0.2.2",
"@storybook/theming": "^8.2.9",
"@storybook/theming": "^8.3.6",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
Expand All @@ -136,21 +136,21 @@
"@types/downloadjs": "^1.4.6",
"@types/github-slugger": "^1.3.0",
"@types/html-to-text": "^9.0.4",
"@types/lodash": "^4.17.7",
"@types/lodash": "^4.17.12",
"@types/mdx": "^2.0.13",
"@types/node": "^20.12.5",
"@types/react": "18.3.5",
"@types/react": "18.3.11",
"@types/react-dom": "^18.3.1",
"@types/react-router-dom": "^5.3.3",
"@types/react-scroll-sync": "^0.9.0",
"@types/sanitize-html": "^2.13.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-istanbul": "^2.1.3",
"@vitest/ui": "^2.1.3",
"autoprefixer": "^10.4.20",
"browserslist": "^4.23.3",
"browserslist": "^4.24.2",
"browserslist-useragent-regexp": "^4.1.3",
"chromatic": "^11.12.6",
"cross-env": "^7.0.3",
Expand All @@ -161,43 +161,45 @@
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-playwright": "^1.6.2",
"eslint-plugin-playwright": "^1.8.1",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-storybook": "^0.10.1",
"eslint-plugin-testing-library": "^6.4.0",
"eslint-plugin-vitest": "^0.5.4",
"husky": "^9.1.5",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"mockdate": "^3.0.5",
"msw": "^2.4.11",
"msw-storybook-addon": "beta",
"npm-run-all": "^4.1.5",
"otpauth": "^9.3.2",
"otpauth": "^9.3.4",
"patch-package": "^8.0.0",
"postcss": "^8.4.45",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"react-error-boundary": "^4.1.2",
"remark-frontmatter": "^5.0.0",
"remark-mdx-frontmatter": "^5.0.0",
"remark-mdx-toc": "^0.3.1",
"sass": "^1.78.0",
"storybook": "^8.2.9",
"storybook-addon-remix-react-router": "^3.0.0",
"sass": "^1.80.3",
"storybook": "^8.3.6",
"storybook-addon-remix-react-router": "^3.0.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"tslib": "^2.8.0",
"typescript": "^5.6.3",
"undici": "^6.20.1",
"vite": "^5.4.9",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-svgr": "^4.2.0",
"vitest": "^2.1.3"
},
"resolutions": {
"@types/react": "18.3.5",
"@okta/okta-auth-js": ">=7.8.1"
"@types/react": "18.3.11",
"@okta/okta-auth-js": ">=7.8.1",
"cookie": ">=0.7.0",
"send": ">=0.19.0"
},
"engines": {
"node": "^20.15"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
@use "../../../global-modules.scss" as *;

.FacilityProviderSubmitterSummary {
hr {
border: 1px solid color("base-lighter");
}
hr {
border: 1px solid color("base-lighter");
}
}
Loading

0 comments on commit 4d016f5

Please sign in to comment.