fix/job-application-modal #3

Merged
omlanke merged 3 commits from mohakj/nextplacement:fix/job-application-modal into main 2026-01-08 01:05:00 +05:30
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 3a1deddb8c - Show all commits

View File

@@ -21,7 +21,6 @@ import { applyForJob } from "../app/(main)/actions"
import { type InferSelectModel } from '@workspace/db/drizzle';
import { jobs, companies, resumes } from '@workspace/db/schema';
export type Job = InferSelectModel<typeof jobs> & {
company: typeof companies.$inferSelect;
};
@@ -202,8 +201,8 @@ export default function JobApplicationModal({ job, studentId, resumes, isApplied
{/* Message Display */}
{message && (
<div className={`p-3 rounded-lg ${message.type === 'success'
? 'bg-green-100 text-green-700 border border-green-200'
: 'bg-red-100 text-red-700 border border-red-200'
? 'bg-green-100 text-green-700 border border-green-200'
: 'bg-red-100 text-red-700 border border-red-200'
}`}>
<div className="flex items-center gap-2">
{message.type === 'success' ? (

1
nextplacement Submodule

Submodule nextplacement added at 1648a56680