Skip to content

Commit

Permalink
Merge pull request #493 from EscolaLMS/feature/handle-additional-fields
Browse files Browse the repository at this point in the history
handle additional fields
  • Loading branch information
victazzz authored Jul 10, 2024
2 parents b43ecf7 + acd26ea commit 2df0ba3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@capacitor/ios": "^5.7.3",
"@capacitor/local-notifications": "^5.0.7",
"@capacitor/status-bar": "^5.0.7",
"@escolalms/components": "^0.0.141",
"@escolalms/components": "^0.0.143",
"@escolalms/h5p-react": "^0.2.19",
"@escolalms/sdk": "0.5.35",
"@escolalms/ts-models": "^0.0.35",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Authentication/AuthWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import styled from "styled-components";

const StyledLoginPage = styled.div`
min-height: calc(100vh - 452px);
height: 700px;
display: flex;
align-items: center;
justify-content: center;
Expand Down
2 changes: 1 addition & 1 deletion src/hooks/useNotification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { EscolaLMSContext } from "@escolalms/sdk/lib/react";
import { Notification } from "@escolalms/sdk/lib/types/api";
import { useContext, useEffect, useState, useCallback } from "react";
import useInfiniteScroll from "react-infinite-scroll-hook";
import debounce from "lodash/debounce";
import debounce from "lodash.debounce";

Check failure on line 5 in src/hooks/useNotification.ts

View workflow job for this annotation

GitHub Actions / static-analysis (20)

Could not find a declaration file for module 'lodash.debounce'. '/home/runner/work/Front/Front/node_modules/lodash.debounce/index.js' implicitly has an 'any' type.

Check failure on line 5 in src/hooks/useNotification.ts

View workflow job for this annotation

GitHub Actions / build-and-deploy

Could not find a declaration file for module 'lodash.debounce'. '/home/runner/work/Front/Front/node_modules/lodash.debounce/index.js' implicitly has an 'any' type.

export const useNotifications = () => {
const [list, setList] = useState<Notification[]>([]);
Expand Down
2 changes: 1 addition & 1 deletion src/pages/register/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { isMobilePlatform } from "@/utils/index";
const StyledRegisterPage = styled.div`
padding-top: 100px;
padding-bottom: 50px;
height: 900px;
min-height: 900px;
display: flex;
align-items: center;
justify-content: center;
Expand Down

0 comments on commit 2df0ba3

Please sign in to comment.