Skip to content

Commit

Permalink
Merge pull request #432 from MeetDOD/issue-429
Browse files Browse the repository at this point in the history
Bug: Fixed the page not found text in light/dark mode successfully issue 429
  • Loading branch information
Ultimateutkarsh11 authored Jul 14, 2024
2 parents dc9fed1 + 7f03779 commit 7ca3535
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion admin/src/pages/PageNotFound.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const PageNotFound = () => {
<img src={notfound} alt='Page Not Found' className='w-[400px]' />
<p className='text-center mb-20'>
<span className='text-red-600 font-bold text-6xl'>404</span><br />
<span className='text-gray-200 ite text-3xl font-semibold'>Page Not Found</span>
<span className='text-gray-800 text-3xl font-bold dark:text-gray-200'>Page Not Found</span>
</p>
</div>
)
Expand Down
1 change: 0 additions & 1 deletion frontend/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ import CodeEditor from "./pages/CodeEditor";
import Contributors from "./pages/Contributors";
import userBlock from "./hooks/userBlock";
import Blocked from "./pages/Blocked";

// import axios from "axios";
// axios.defaults.baseURL = "http://localhost:3001/";

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/PageNotFound.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const PageNotFound = () => {
<img src={notfound} alt='Page Not Found' className='w-[400px]' />
<p className='text-center mb-20'>
<span className='text-red-600 font-bold text-6xl'>404</span><br />
<span className='text-gray-200 ite text-3xl font-semibold'>{t('notfound')}</span>
<span className='text-gray-800 text-3xl font-bold dark:text-gray-200'>{t('notfound')}</span>
</p>
</div>
)
Expand Down

0 comments on commit 7ca3535

Please sign in to comment.