Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sitek94 committed Nov 24, 2023
1 parent 04564ee commit 0571c86
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/nestjs/src/cats/schemas/cat.schema.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Cat as CatInterface } from '../../../../../libs/types'
import type { Cat as CatInterface } from '@company/types'
import { Prop, Schema, SchemaFactory } from '@nestjs/mongoose'
import { HydratedDocument } from 'mongoose'

Expand Down
3 changes: 1 addition & 2 deletions apps/remix/app/api/cats.api.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import type { Cat } from '@company/types'
import axios from 'axios'

import type { Cat } from '../../../../libs/types'

const client = axios.create({
baseURL: process.env.API_URL || 'http://localhost:2222',
})
Expand Down

0 comments on commit 0571c86

Please sign in to comment.