Skip to content

Commit

Permalink
fix issue on lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zuies committed Jul 13, 2023
1 parent 85d1621 commit ab79d14
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
File renamed without changes
2 changes: 1 addition & 1 deletion src/pages/callback.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useRouter } from 'next/router';
import { useEffect, useState } from 'react';
import React, { useEffect, useState } from 'react';
import { IUser, callbackUrlParams } from '../utils/types';
import SimpleBackdrop from '../components/global/LoadingBackdrop';
import { StorageService } from '../services/StorageService';
Expand Down
10 changes: 9 additions & 1 deletion src/pages/communityHealth.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
import React from 'react';
import { defaultLayout } from '../layouts/defaultLayout';
import SEO from '../components/global/SEO';

function communityHealth() {
return <div>communityHealth</div>;
return (
<>
<SEO titleTemplate="Member interactions" />
<div className="flex flex-col container justify-between px-4 md:px-12 py-3">
communityHealth
</div>
</>
);
}

communityHealth.pageLayout = defaultLayout;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import MainSection from '../components/pages/pageIndex/MainSection';

import { defaultLayout } from '../layouts/defaultLayout';
import SEO from '../components/global/SEO';
import { useEffect, useState } from 'react';
import React, { useEffect, useState } from 'react';
import { StorageService } from '../services/StorageService';
import { IUser } from '../utils/types';
import { useRouter } from 'next/router';
Expand Down

0 comments on commit ab79d14

Please sign in to comment.