Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

겨울인턴 디폴트값 에러 수정 및 로고 업로드 타입 수정 #107

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/company/src/apis/files/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export type ImageType = "LOGO_IMAGE" | "EXTENSION_FILE";

export const fileUpload = async (files: File[]) => {
const body = files.map(file => ({
type: "EXTENSION_FILE",
type: "LOGO_IMAGE",
file_name: file.name,
}));
const { data } = await instance.post<PresignedURLResponse>(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,8 +277,16 @@ const GatherModal = ({ setForm, areaIndex, setAreaIndex }: IPropsType) => {
<Flex align="center">
<Input
type="number"
min={0}
value={area.hiring}
max={255}
value={area.hiring == 0 ? "" : area.hiring}
onInput={e => {
const value = Number(e.currentTarget.value);
if (value < 0) {
e.currentTarget.value = "0";
} else if (value > 255) {
e.currentTarget.value = "255";
}
}}
onChange={e => {
setArea({ ...area, hiring: +e.target.value });
}}
Expand Down