mirror of
https://github.com/BreizhHardware/Site-comptage-heure.git
synced 2026-05-09 08:15:31 +02:00
[PR #28] [MERGED] fix: Corriger les chemins d'importation pour les composants et ajuster la configuration TypeScript #85
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
BreizhHardware/Site-comptage-heure#85
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/BreizhHardware/Site-comptage-heure/pull/28
Author: @BreizhHardware
Created: 11/20/2025
Status: ✅ Merged
Merged: 11/20/2025
Merged by: @BreizhHardware
Base:
main← Head:hotfix/build-docker📝 Commits (1)
5fcedfafix: Corriger les chemins d'importation pour les composants et ajuster la configuration TypeScript📊 Changes
5 files changed (+22 additions, -13 deletions)
View changed files
📝
app/admin/import-users/page.tsx(+5 -5)📝
components/mode-toggle.tsx(+2 -2)📝
components/ui/checkbox.tsx(+1 -1)📝
components/ui/select.tsx(+1 -1)📝
tsconfig.json(+13 -4)📄 Description
This pull request primarily updates import paths throughout the codebase, replacing alias-based imports (using
@/) with relative paths. This change ensures that component and utility imports are resolved correctly, likely to improve compatibility with certain tooling or deployment environments.Import path updates:
app/admin/import-users/page.tsxfrom alias-based (@/components/ui/...) to relative paths (../../../components/ui/...).ButtonandPopovercomponents incomponents/mode-toggle.tsxfrom alias-based to relative paths (./ui/...).cnutility incomponents/ui/checkbox.tsxfrom alias-based to relative path (../../lib/utils).cnutility incomponents/ui/select.tsxfrom alias-based to relative path (../../lib/utils).🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.