Skip to content

Commit

Permalink
Update import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ab-elhaddad committed Oct 13, 2023
1 parent 7f85b7e commit 1671b51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/helpers/generateListURL.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import jwt from 'jsonwebtoken';
import { config } from '../../configuration/config';
import { config } from './../configuration/config';

const shareList = (l_id: number): string => {
const token = jwt.sign(String(l_id), config.jwtSecretKey);
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/sendConfirmationEmail.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import nodemailer from 'nodemailer';
import { Transporter } from 'nodemailer';
import { config } from '../../configuration/config';
import { config } from './../configuration/config';
import jwt from 'jsonwebtoken';

let transporter: Transporter | null = null;
Expand Down
2 changes: 1 addition & 1 deletion src/helpers/setTaskPriority.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Task from '../../types/Task.type';
import Task from './../types/Task.type';

const setTaskPriority = (task: Task) => {
if (task.t_priority) {
Expand Down

0 comments on commit 1671b51

Please sign in to comment.