Skip to content

Commit 668aa90

Browse files
authored
fix: resolve npm i dependencies (#40)
* fix: resolve npm i dependencies * fix: use npm i
1 parent 5195e71 commit 668aa90

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
- name: Install dependencies
2424
working-directory: app
25-
run: npm ci
25+
run: npm install
2626

2727
- name: Build
2828
working-directory: app

app/src/components/complex/PocketTableRow.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ interface PocketTableRowProps {
1616
/**
1717
* PocketTableRow — displays details for a single predicted binding pocket in a table format.
1818
* "Dock Molecule" signals the parent to open the docking UI in the detail panel.
19-
*/
19+
*/
2020
export function PocketTableRow({ pocket, activeTab, isActive, onHighlight, proteinPdbId, sourceType, onStartDocking, isDockingActive }: PocketTableRowProps) {
2121
const scoreColor = pocket.druggability_score >= 0.5
2222
? 'text-success'

0 commit comments

Comments
 (0)