Skip to content

Commit

Permalink
fix nest entrypoint after transpilation, fix overall imports
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeh committed May 15, 2024
1 parent 105b689 commit b8de3d6
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion api/test/app.e2e-spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Test, TestingModule } from '@nestjs/testing';
import { INestApplication } from '@nestjs/common';
import * as request from 'supertest';
import { AppModule } from '../src/app.module';
import { AppModule } from '@api/app.module';

describe('AppController (e2e)', () => {
let app: INestApplication;
Expand Down
2 changes: 1 addition & 1 deletion api/test/users/users.controller.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Test, TestingModule } from '@nestjs/testing';
import { UsersController } from '../../src/modules/users/users.controller';
import { UsersController } from '@api/modules/users/users.controller';

describe('UsersController', () => {
let controller: UsersController;
Expand Down
3 changes: 0 additions & 3 deletions client/src/containers/coming-soon/index.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import Image from "next/image";

import { CreateUserDto } from "@shared/dto/users/create-user.dto";
import { BarChartHorizontal, Filter } from "lucide-react";

import Wrapper from "@client/src/containers/wrapper";

export default function ComingSoon() {
const user = new CreateUserDto();
return (
<Wrapper className="lg:px-24 pt-0.5 lg:pt-20">
<section className="animate-hero bg-cover bg-center mb-0.5 flex flex-col items-center lg:col-span-4 rounded-2xl lg:px-44 pt-[90px] pb-28 space-y-4">
Expand Down

0 comments on commit b8de3d6

Please sign in to comment.