Skip to content

Commit

Permalink
Merge branch 'test'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jun-Murakami committed Oct 5, 2024
1 parent 7c041c1 commit 441ff66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/features/sortableTree/MenuItems.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export function MenuItems({ id, attachedFile, timerDef, isUpLiftDef, upLiftMinut
const handleiOSImagePicker = async () => {
try {
const result = await FilePicker.pickImages({
multiple: true, // 複数選択を許可するかどうか
limit: 1,
readData: true, // Base64データを読み込む
});
if (result.files.length > 0) {
Expand Down Expand Up @@ -226,7 +226,7 @@ export function MenuItems({ id, attachedFile, timerDef, isUpLiftDef, upLiftMinut
const handleiOSFilePicker = async () => {
try {
const result = await FilePicker.pickFiles({
multiple: true, // 複数選択を許可するかどうか
limit: 1,
readData: true, // Base64データを読み込む
});
if (result.files.length > 0) {
Expand Down

0 comments on commit 441ff66

Please sign in to comment.