diff --git a/dbal/cpp/src/entities/package/batch/batch_packages.hpp b/dbal/cpp/src/entities/package/batch/batch_packages.hpp index 6fca785a2..69b7eef44 100644 --- a/dbal/cpp/src/entities/package/batch/batch_packages.hpp +++ b/dbal/cpp/src/entities/package/batch/batch_packages.hpp @@ -9,9 +9,9 @@ #include "dbal/errors.hpp" #include "../../../store/in_memory_store.hpp" #include "../../../validation/entity/package_validation.hpp" -#include "create_package.hpp" -#include "update_package.hpp" -#include "delete_package.hpp" +#include "../crud/create_package.hpp" +#include "../crud/update_package.hpp" +#include "../crud/delete_package.hpp" namespace dbal { namespace entities { diff --git a/frontends/nextjs/src/lib/db/verify-password.ts b/frontends/nextjs/src/lib/db/verify-password.ts index 726063bca..7e1a47fc0 100644 --- a/frontends/nextjs/src/lib/db/verify-password.ts +++ b/frontends/nextjs/src/lib/db/verify-password.ts @@ -1 +1 @@ -export { verifyPassword } from '../password/verify-password' +export { verifyPassword } from './password/verify-password'