Skip to content
This repository has been archived by the owner on Jan 2, 2024. It is now read-only.

Commit

Permalink
Merge pull request #174 from sef-global/development
Browse files Browse the repository at this point in the history
Release ScholarX v1.2.1
  • Loading branch information
jayasanka-sack authored Jun 6, 2021
2 parents 8fab792 + 6bbe334 commit 844c9a3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 1 addition & 2 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="shortcut icon" href="dist/favicon.png">
<link rel="shortcut icon" href="/favicon.png">
<title>ScholarX | Sustainable Education Foundation</title>
</head>

Expand All @@ -13,7 +13,6 @@
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<script src="/dist/bundle.js"></script>
</body>

</html>
Expand Down
4 changes: 4 additions & 0 deletions src/scenes/Dashboard/scenes/ManageMentees/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ function ManageMentees() {
}
description={item.profile.headline}
/>
<span>
Mentor: {item.mentor.profile.firstName}{' '}
{item.mentor.profile.lastName}
</span>
</List.Item>
)}
/>
Expand Down
3 changes: 2 additions & 1 deletion src/scenes/Dashboard/scenes/ManageMentees/interfaces.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { Profile } from '../../../../interfaces';
import { Profile, Mentor } from '../../../../interfaces';

export interface Mentee {
id: number;
profile: Profile;
state: string;
submissionUrl: string;
mentor: Mentor;
}
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ module.exports = {
resolve: { extensions: ['*', '.js', '.jsx', '.ts', '.tsx'] },
output: {
path: path.resolve(__dirname, 'dist/'),
publicPath: '/dist/',
publicPath: '/',
filename: 'bundle.js',
},
devServer: {
Expand Down

0 comments on commit 844c9a3

Please sign in to comment.