@campxdev/react-blueprint 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@campxdev/react-blueprint",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "main": "./export.ts",
5
5
  "private": false,
6
6
  "dependencies": {
@@ -1,9 +1,8 @@
1
1
  import { errorCactus } from "../../../assets/images/svg";
2
2
  import { Typography } from "../../DataDisplay/Typography/Typography";
3
- import { Button } from "../../export";
4
3
  import { StyledBox } from "./styles";
5
4
 
6
- export const PageNotFound = ({ resetBoundary }: any) => {
5
+ export const PageNotFound = () => {
7
6
  return (
8
7
  <>
9
8
  <StyledBox>
@@ -20,13 +19,6 @@ export const PageNotFound = ({ resetBoundary }: any) => {
20
19
  <Typography variant="body2">
21
20
  Please check the URL or return to the homepage.
22
21
  </Typography>
23
- <Button
24
- sx={{ marginTop: "20px" }}
25
- variant="contained"
26
- onClick={() => resetBoundary()}
27
- >
28
- Try Again
29
- </Button>
30
22
  </StyledBox>
31
23
  </>
32
24
  );