Skip to content

Commit

Permalink
try fixing astro check
Browse files Browse the repository at this point in the history
  • Loading branch information
sandhose committed Oct 17, 2024
1 parent 3fbd7ff commit 735d758
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,8 @@
"react-dom": "^18.3.1",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247"
"packageManager": "[email protected]+sha512.faf344af2d6ca65c4c5c8c2224ea77a81a5e8859cbc4e06b1511ddce2f0151512431dd19e6aff31f2c6a8f5f2aced9bd2273e1fed7dd4de1868984059d2c4247",
"devDependencies": {
"@types/react": "^18.3.11"
}
}
4 changes: 4 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion src/pages/client-implementation-guide/interactive.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,11 @@ export const OidcMetadataFetcher = () => {
);
};

const DataViewer: React.FC<{ data: unknown }> = ({ data }) => {
const DataViewer: React.FC<{ data: unknown }> = ({
data,
}: {
data: unknown;
}) => {
return (
<textarea
readOnly
Expand Down

0 comments on commit 735d758

Please sign in to comment.