Skip to content

Commit 430ad41

Browse files
committed
sort
Signed-off-by: Logan McAnsh <[email protected]>
1 parent 92e163f commit 430ad41

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

dataloader/server/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
import path from "path";
1+
import path from "node:path";
22

3-
import express from "express";
3+
import { createRequestHandler } from "@remix-run/express";
44
import compression from "compression";
5+
import express from "express";
56
import morgan from "morgan";
6-
import { createRequestHandler } from "@remix-run/express";
77

88
import { createUsersByIdLoader } from "../app/loaders/userLoader";
99

file-and-cloudinary-upload/app/utils/utils.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1+
import { writeAsyncIterableToWritable } from "@remix-run/node";
12
import type { UploadApiResponse } from "cloudinary";
23
import cloudinary from "cloudinary";
3-
import { writeAsyncIterableToWritable } from "@remix-run/node";
44

55
cloudinary.v2.config({
66
cloud_name: process.env.CLOUD_NAME,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"license": "MIT",
55
"scripts": {
66
"format": "prettier --write . && yarn lint:fix",
7-
"lint": "eslint --ext .tsx,.ts,.js,.jsx,.md .",
7+
"lint": "eslint .",
88
"lint:fix": "yarn lint --fix"
99
},
1010
"devDependencies": {

theme-ui/app/root.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import {
88
Scripts,
99
ScrollRestoration,
1010
} from "@remix-run/react";
11-
import { ThemeProvider } from "theme-ui";
1211
import type { ReactNode } from "react";
1312
import { useContext, useEffect } from "react";
13+
import { ThemeProvider } from "theme-ui";
1414

1515
import { ServerStyleContext, ClientStyleContext } from "./styles/context";
1616

0 commit comments

Comments
 (0)