Skip to content

Commit

Permalink
fix npm build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Arthur-Kamau committed Dec 10, 2024
1 parent 3633540 commit c7e4a8e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/src/components/ui/table.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use client"

import { Box, Card, CardBody, FormatByte, Group, Kbd, Show, Table, Text, VStack } from "@chakra-ui/react"
import { Box, Card, CardBody, FormatByte, Group, Kbd, Table, Text, VStack } from "@chakra-ui/react"
import {
ActionBarContent,
ActionBarRoot,
Expand All @@ -26,13 +26,13 @@ const FilesTable = () => {
const hasSelection = selection.length > 0
const indeterminate = hasSelection && selection.length < files.length

const handleShare = () => {
// const handleShare = () => {
// if (navigator.canShare) {
// navigator.share({
// url: "https://github.com/share"
// })
// }
}
// }

const rows = files?.map((item: any) => (
<Table.Row
Expand Down

0 comments on commit c7e4a8e

Please sign in to comment.