Skip to content

Commit

Permalink
Removes swagger-ui Fastify plugin, hopefully temporarily (chrisbeninc…
Browse files Browse the repository at this point in the history
…asa#551)

We've seen reports like
chrisbenincasa#550 where swagger-ui
prevents the server from starting, permanently. I haven't been able to
reproduce this yet. We've opened an issue on the plugin repo to see if
they have ideas:
fastify/fastify-swagger-ui#156

For now, we're not really in need of this anyway, so just remove it.

I've also updated a bunch of deps and shimmed in the "DOM" types in our
tsconfig since there are lots of errors when compiling during the lib
check phase for things like esbuild, vitest.
  • Loading branch information
chrisbenincasa authored and markdavella committed Jun 24, 2024
1 parent 3c1d09f commit f23851b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions web/src/pages/channels/EditChannelPage.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
import { EditChannelTabs } from '@/components/channel_config/EditChannelTabPanel.tsx';
import { useChannelSuspense } from '@/hooks/useChannels.ts';
import { Route } from '@/routes/channels_/$channelId/edit/index.tsx';
import Edit from '@mui/icons-material/Edit';
import { Box, Button, Stack } from '@mui/material';
import Typography from '@mui/material/Typography';
import { Link } from '@tanstack/react-router';
import { useState } from 'react';
import Breadcrumbs from '../../components/Breadcrumbs.tsx';
import { EditChannelForm } from '../../components/channel_config/EditChannelForm.tsx';
Expand All @@ -8,11 +13,6 @@ import {
ChannelEditContext,
ChannelEditContextState,
} from './EditChannelContext.ts';
import { Route } from '@/routes/channels_/$channelId/edit/index.tsx';
import { useChannelSuspense } from '@/hooks/useChannels.ts';
import Edit from '@mui/icons-material/Edit';
import { Link } from '@tanstack/react-router';
import { Stack, Box, Button } from '@mui/material';

type Props = {
initialTab?: EditChannelTabs;
Expand Down

0 comments on commit f23851b

Please sign in to comment.