Merged in fix/booking-flow-eslint-fix (pull request #3342)
fix: Upgrade booking-flow eslint config * Upgrade booking-flow eslint config Approved-by: Bianca Widstam
This commit is contained in:
@@ -2,11 +2,11 @@ import * as Sentry from "@sentry/bun";
|
||||
import { Elysia, t } from "elysia";
|
||||
|
||||
import { redis } from "@/services/redis";
|
||||
import { getAllKeys } from "@/services/redis/getAllKeys";
|
||||
import { queueDelete, queueDeleteMultiple } from "@/services/redis/queueDelete";
|
||||
import { loggerModule } from "@/utils/logger";
|
||||
import { truncate } from "@/utils/truncate";
|
||||
import { validateKey } from "@/utils/validateKey";
|
||||
import { getAllKeys } from "@/services/redis/getAllKeys";
|
||||
|
||||
const QUERY_TYPE = t.Object({ key: t.String({}) });
|
||||
const DELETEMULTIPLE_BODY_TYPE = t.Object({
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
import { env } from "@/env";
|
||||
import { redis } from ".";
|
||||
import { timeout } from "@/utils/timeout";
|
||||
|
||||
import { redis } from ".";
|
||||
|
||||
/**
|
||||
* Retrieves all Redis keys that match any of the provided patterns.
|
||||
*
|
||||
|
||||
@@ -1,10 +1,8 @@
|
||||
import { Queue, Worker } from "bullmq";
|
||||
import z from "zod";
|
||||
|
||||
import { env } from "@/env";
|
||||
import { sentry } from "@/server/sentry.server.config";
|
||||
import { loggerModule } from "@/utils/logger";
|
||||
import { timeout } from "@/utils/timeout";
|
||||
|
||||
import { bullmqredis, redis } from ".";
|
||||
import { getAllKeys } from "./getAllKeys";
|
||||
|
||||
@@ -70,6 +70,7 @@ export async function TopCampaign({ topCampaign }: TopCampaignProps) {
|
||||
<h2 className={styles.heading}>{heading}</h2>
|
||||
</Typography>
|
||||
) : null}
|
||||
{/* eslint-disable-next-line react-hooks/static-components */}
|
||||
<CampaignContent />
|
||||
</section>
|
||||
)
|
||||
|
||||
@@ -26,7 +26,7 @@ export default function DeliveryMethodStep() {
|
||||
</Typography>
|
||||
<Select
|
||||
name="deliveryTime"
|
||||
label={""}
|
||||
label=""
|
||||
items={deliveryTimeOptions}
|
||||
registerOptions={{ required: true }}
|
||||
isNestedInModal
|
||||
|
||||
Reference in New Issue
Block a user