Skip to content

Commit

Permalink
Merge pull request #591 from LorhanSohaky/add-vlibras
Browse files Browse the repository at this point in the history
feat: add vlibras
  • Loading branch information
murilohns committed Feb 25, 2024
2 parents efb827d + fb30245 commit 324fcfd
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 2 deletions.
11 changes: 11 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"node": ">=16 <17"
},
"dependencies": {
"@djpfs/react-vlibras": "2.0.2",
"adm-zip": "0.5.10",
"apollo-server-micro": "2.24.0",
"axios": "0.21.1",
Expand Down
2 changes: 2 additions & 0 deletions pages/_app.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
// pages/_app.js
import React from 'react';
import '../styles/globals.scss';
import VLibras from '@djpfs/react-vlibras';

function MyApp({ Component, pageProps }) {
return (
<>
<Component {...pageProps} />
<VLibras />
</>
);
}
Expand Down
1 change: 0 additions & 1 deletion pages/_document.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ export default class MyDocument extends Document {
<link
href="https://fonts.googleapis.com/css2?family=Inter&family=Lexend:wght@400;600;700&display=swap"
rel="stylesheet"
property="stylesheet"
/>
</body>
</Html>
Expand Down
2 changes: 1 addition & 1 deletion pages/api/cep/v2/[cep].js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async function Cep(request, response) {
if (!cepFromCepPromise.street) {
cepFromCepPromise.street = null;
}

if (!cepFromCepPromise.neighborhood) {
cepFromCepPromise.neighborhood = null;
}
Expand Down

0 comments on commit 324fcfd

Please sign in to comment.