feat: replace private workspaces with private usernames (#1783)

This commit is contained in:
Mo
2022-10-12 13:52:34 -05:00
committed by GitHub
parent 038e456c6a
commit 18c821d8eb
12 changed files with 84 additions and 108 deletions

View File

@@ -20,6 +20,7 @@ const DecoratedInput = forwardRef(
(
{
autocomplete = false,
spellcheck = true,
className,
disabled = false,
id,
@@ -68,6 +69,7 @@ const DecoratedInput = forwardRef(
title={title}
type={type}
value={value}
spellCheck={spellcheck}
/>
{right && (

View File

@@ -2,6 +2,7 @@ import { FocusEventHandler, KeyboardEventHandler, ReactNode } from 'react'
export type DecoratedInputProps = {
autocomplete?: boolean
spellcheck?: boolean
className?: {
container?: string
input?: string