Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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 .script/gSheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ function processPeopleData(peoplesRow, config) {
const row = it['_rawData'];

const thumbnailId = (row[12] ?? '').match(/\/d\/(.*?)\/view/)?.[1] ?? '';
const key = row[0] ?? Math.random().toString(36).substring(2, 15);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

앗 그러네요. 감사합니당 ㅎ

const key = row[0] || Math.random().toString(36).substring(2, 15);
const period = row[4];

periodsMap[period].push({
Expand Down
3 changes: 2 additions & 1 deletion src/components/molecules/Image/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React, { CSSProperties, ReactNode, useCallback } from 'react';
import { CSSProperties, ReactNode, useCallback } from 'react';

import NextImage, { ImageProps as NextImageProps } from 'next/image';

Expand Down Expand Up @@ -72,6 +72,7 @@ function Image({
<>
{renderFillImage(
<NextImage
key={src}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

키가 없었다니.

src={src}
alt={alt}
className={defaultClassName}
Expand Down