Skip to content

Commit

Permalink
fix: remove cursed long release
Browse files Browse the repository at this point in the history
  • Loading branch information
jcstein committed Oct 6, 2023
1 parent bd19e94 commit fbff210
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
File renamed without changes.
11 changes: 7 additions & 4 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function getMethodsByPackage(spec: any): MethodByPkg {

const versions = [
'v0.11.0-rc8',
'v0.11.0-rc8-arabica-improvements',
'rc8-0cf4a49',
'v0.11.0-rc11',
'v0.11.0-rc12',
'v0.11.0-rc13',
Expand Down Expand Up @@ -304,19 +304,22 @@ export default function Example() {
<h1 className='my-auto ml-2 hidden font-[ruberoid] text-xl font-semibold text-gray-900 sm:text-3xl md:block'>
{spec && spec.info.title}
</h1>
<label className='my-auto ml-4 inline-flex h-8 items-center rounded-full bg-purple-100 px-3 py-0.5 text-sm font-medium text-purple-800'>
Select API version:
<div className='my-auto ml-4 flex flex-col items-start rounded-full bg-purple-100 px-3 py-1 text-sm font-medium text-purple-800 sm:flex-row sm:items-center sm:px-3 sm:py-1'>
<span className='mb-2 sm:mb-0 sm:mr-2'>
Select API version:
</span>
<select
value={selectedVersion}
onChange={handleVersionChange}
className='h-8 w-full rounded-md border border-gray-300 bg-white py-0 pl-3 pr-7 text-gray-700 focus:border-indigo-500 focus:outline-none focus:ring-indigo-500 sm:h-8 sm:w-auto sm:text-sm'
>
{versions.map((version) => (
<option key={version} value={version}>
{version}
</option>
))}
</select>
</label>
</div>
</div>
<div className='ml-auto flex'>
<a href='https://discord.com/invite/YsnTPcSfWQ'>
Expand Down

0 comments on commit fbff210

Please sign in to comment.