Patch/moving folders and file on my google drive using nextjs + googleapis

Im trying the Patch function on nextjs + googleapis, so far ive tried check my permissions, scopes and credentials, all seems to be in order cause all of the other functions that i have been playin with such as uploading,creating folders, getting raw data are working properly, however when i got to the patching(modifying) something seems off or not working

this is the code im playing with (perflexity assisted me with)

const moveFileOrFolder = async () => {
  if (!session || !selectedItemId || !destinationFolderId) return;

  try {
    const auth = `Bearer ${session.accessToken}`;
   
    // Fetch the current parents of the selected item
    const response = await fetch(
      `https://www.googleapis.com/drive/v3/files/${selectedItemId}?fields=id,name,parents`,
      {
        method: "GET",
        headers: {
          Authorization: auth,
        },
      }
    );
    console.log("Response" , selectedItemId)
    if (response.ok) {
      const data = await response.json();

      // Prepare the current parents
      const currentParents = data.parents || [];

      // Check if the destination folder is already a parent
      if (currentParents.includes(destinationFolderId)) {
        console.error("The destination folder is already a parent of the selected item.");
        return;
      } 
      
      // Prepare the request to move the file/folder
      const updateResponse = await fetch(
        `https://www.googleapis.com/drive/v3/files/${selectedItemId }?fields=id,name`,
        {
          method: "PATCH",
          headers: {
            Authorization: auth,
            "Content-Type": "application/json",
          },
          body: JSON.stringify({ 
          addParents: destinationFolderId, // Specify the new parent
          removeParents: currentParents.join(','), // Specify the current parents to remove
          }), 
        }
      );
       console.log("Update Response" , destinationFolderId)
      if (updateResponse.ok) {
        console.log("File/Folder moved successfully!" , updateResponse);
      } else {
        const errorData = await updateResponse.json();
        console.error("Error moving file/folder:", updateResponse.status, errorData);
      }
    } else {
      const errorData = await response.json();
      console.error("Error fetching file/folder details:", response.status, errorData);
    }
  } catch (error) {
    console.error("Error moving file/folder:", error);
  }
};

  return (
    <div>
      <h2>Move File or Folder</h2>
      <br  />
      <button onClick={fetchFilesAndFolders}>Fetch Files and Folders</button>
      {/* Replace the following with actual UI to select a file/folder */}
      <br  />
      <input
        type="text"
        placeholder="Enter selected file/folder ID"
        value={selectedItemId || ""}
        onChange={(e) => setSelectedItemId(e.target.value)}
      />
      <br  />
      <input
        type="text"
        placeholder="Enter destination folder ID"
        value={destinationFolderId   || ""}
        onChange={(e) => setDestinationFolderId(e.target.value)}
      />
      <br  />
      <button onClick={moveFileOrFolder}>Move</button>
    </div>
  );
};

on my understanding that it should push through, since all the values are being retrieved and sent, I’ve also included add&removeParent parameters, but upon troubleshooting it. It gives out a successful response, even though there are no changes on my google drive folders, even after checking if I have changed the access of the folders from private to public and vice versa to be sure, still the same console log, If anyone can explain and help me out that would be much appreciated

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật