Pull Request branch dev-clone to main #1

Merged
gitea merged 429 commits from dev-clone into main 2024-12-23 09:31:34 +00:00
2 changed files with 6 additions and 2 deletions
Showing only changes of commit f2519baf4a - Show all commits

View File

@ -29,7 +29,7 @@ export const createAssessmentRequest = async ({ respondentsId }: { respondentsId
return await response.json();
};
// Query to update assessment status
// Query to update assessment status when user start assessment
export const updateAssessmentRequest = async ({
assessmentId,
status,

View File

@ -85,7 +85,11 @@ export default function UsersPage() {
columnDefs={[
columnHelper.display({
header: "No",
cell: (props) => props.row.index + 1,
cell: (props) => (
<div className="ml-1">
{props.row.index + 1}
</div>
),
}),
columnHelper.display({
header: "Tanggal",