Skip to content

Commit

Permalink
removed stipend field
Browse files Browse the repository at this point in the history
  • Loading branch information
TusharMohapatra07 committed Aug 17, 2024
1 parent ff274e8 commit 2298f00
Showing 1 changed file with 3 additions and 17 deletions.
20 changes: 3 additions & 17 deletions app/(default)/achievements/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ interface Achiever {
Portfolio: string;
Internship: string;
CompanyPosition: string;
Stipend: number;
achievements: string[];
}

Expand Down Expand Up @@ -235,22 +234,9 @@ export default function AchievementsPage() {
/>
</div>
<div className="mb-4">
<label className="block mb-2">Stipend:</label>
<input
type="number"
value={newAchievement.Stipend || ""}
onChange={(e) =>
setNewAchievement((prev) => ({
...prev,
Stipend: Number(e.target.value),
}))
}
className="w-full p-3 bg-gray-800 rounded"
placeholder="Add Stipend"
/>
</div>
<div className="mb-4">
<label className="block mb-2">Image:</label>
<label className="block mb-2">
Select an image of the person:
</label>
<input
type="file"
onChange={(e) => {
Expand Down

0 comments on commit 2298f00

Please sign in to comment.