Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JACoB PR for Issue Add image upload feature to chat interface #43

Closed
wants to merge 6 commits into from

Conversation

jacob-ai-bot[bot]
Copy link
Contributor

@jacob-ai-bot jacob-ai-bot bot commented May 29, 2024

Summary:

Add Image Upload Feature to Chat Interface

Description:
Add a new button to the chat interface that allows users to upload an image. The image will be sent to an existing API endpoint, and the returned URL will be saved and passed along with future chat messages to the backend.

Requirements:

  • Add an upload button with an upload icon to the chat interface.
  • Open a default file picker dialog when the button is clicked.
  • Send the selected image to the existing API endpoint.
  • Save the returned URL and pass it along with future chat messages.
  • Display an error message using a toast notification if the upload fails.
  • Validate the image before uploading (must be under 20MB and either PNG or JPEG).
  • Place the upload button to the left of the "send message" button (the up arrow).
  • Handle multiple image uploads in parallel.
  • Show an error message if a non-image file is uploaded.
  • Set a loading state to true during the upload and back to false once the upload is complete.

Files to Update:

  • src/app/dashboard/[org]/[repo]/[developer]/components/chat/ChatMessage.tsx
  • src/app/dashboard/[org]/[repo]/[developer]/components/chat/Chat.tsx

Acceptance Criteria:

  • Upload button with an upload icon is added to the chat interface.
  • File picker dialog opens on button click.
  • Image is sent to the API endpoint and URL is returned.
  • URL is saved and passed along with future chat messages.
  • Error message is displayed using a toast notification if the upload fails.
  • Image validation is implemented (under 20MB and either PNG or JPEG).
  • Upload button is placed to the left of the "send message" button.
  • Multiple image uploads are handled in parallel.
  • Error message is shown if a non-image file is uploaded.
  • Loading state is managed correctly during the upload process.

@jacob-ai-bot

Steps to Address Issue: 1. Add an upload button with an upload icon to the chat interface. 2. Implement a file picker dialog that opens when the button is clicked. 3. Validate the selected image (must be under 20MB and either PNG or JPEG). 4. Send the validated image to the existing API endpoint. 5. Save the returned URL and pass it along with future chat messages. 6. Display an error message using a toast notification if the upload fails. 7. Handle multiple image uploads in parallel. 8. Show an error message if a non-image file is uploaded. 9. Manage the loading state during the upload process.

Files to Update: /src/app/dashboard/[org]/[repo]/[developer]/components/chat/ChatMessage.tsx, /src/app/dashboard/[org]/[repo]/[developer]/components/chat/Chat.tsx

task assigned to: @jacob-ai-bot

Plan:

  1. Add an upload button with an upload icon to the chat interface. 2. Implement a file picker dialog that opens when the button is clicked. 3. Validate the selected image (must be under 20MB and either PNG or JPEG). 4. Send the validated image to the existing API endpoint. 5. Save the returned URL and pass it along with future chat messages. 6. Display an error message using a toast notification if the upload fails. 7. Handle multiple image uploads in parallel. 8. Show an error message if a non-image file is uploaded. 9. Manage the loading state during the upload process.

@jacob-ai-bot fix error

Error Message:

Command failed: __NEXT_TEST_MODE=1 SKIP_ENV_VALIDATION=1 npm run build --verbose && npx tsc --noEmit
npm verb cli /opt/render/project/nodes/node-20.11.0/bin/node /opt/render/project/nodes/node-20.11.0/bin/npm
npm info using npm@10.2.4
npm info using node@v20.11.0
npm verb title npm run build
npm verb argv "run" "build" "--loglevel" "verbose"
npm verb logfile logs-max:10 dir:/opt/render/.cache/_logs/2024-05-29T20_31_48_907Z-
npm verb logfile /opt/render/.cache/_logs/2024-05-29T20_31_48_907Z-debug-0.log
npm verb cli /opt/render/project/nodes/node-20.11.0/bin/node /opt/render/project/nodes/node-20.11.0/lib/node_modules/npm/bin/npm-cli.js
npm info using npm@10.2.4
npm info using node@v20.11.0
npm verb title npm run build:1-next
npm verb argv "run" "build:1-next"
npm verb logfile logs-max:10 dir:/opt/render/.cache/_logs/2024-05-29T20_31_49_318Z-
npm verb logfile /opt/render/.cache/_logs/2024-05-29T20_31_49_318Z-debug-0.log
 ⚠ Compiled with warnings

./node_modules/@ts-morph/common/dist/typescript.js
Module not found: Can't resolve 'source-map-support' in '/mnt/tmp/tmp-99-f4yRY3ZkaeuZ/node_modules/@ts-morph/common/dist'

Import trace for requested module:
./node_modules/@ts-morph/common/dist/typescript.js
./node_modules/@ts-morph/common/dist/ts-morph-common.js
./node_modules/ts-morph/dist/ts-morph.js
./src/server/analyze/sourceMap.ts
./src/server/messaging/queue.ts
./src/server/webhooks/github.ts
./src/app/api/github/webhooks/route.ts


Failed to compile.

./src/app/dashboard/[org]/[repo]/[developer]/components/chat/Chat.tsx
78:15  Error: Unsafe assignment of an `any` value.  @typescript-eslint/no-unsafe-assignment
79:9  Error: Unsafe return of an `any` typed value.  @typescript-eslint/no-unsafe-return
79:21  Error: Unsafe member access .url on an `any` value.  @typescript-eslint/no-unsafe-member-access

info  - Need to disable some ESLint rules? Learn more here: https://nextjs.org/docs/basic-features/eslint#disabling-rules
npm verb exit 1
npm verb code 1
ERROR: "build:1-next" exited with 1.
npm verb exit 1
npm verb code 1

Copy link
Contributor Author

jacob-ai-bot bot commented May 29, 2024

JACoB here...

I'm busy working on this error.

I'll continue to comment on this pull request with status as I make progress.

…he missing package. 2. Update Chat.tsx to handle 'any' types safely by defining proper types.
Copy link
Contributor Author

jacob-ai-bot bot commented May 29, 2024

This PR has been updated with a new commit.

Next Steps

I am working to resolve an error. I will update this PR with my progress.
@jacob-ai-bot fix error

Error Message (Attempt Number 2):

Command failed: __NEXT_TEST_MODE=1 SKIP_ENV_VALIDATION=1 npm run build --verbose && npx tsc --noEmit
npm verb cli /opt/render/project/nodes/node-20.11.0/bin/node /opt/render/project/nodes/node-20.11.0/bin/npm
npm info using npm@10.2.4
npm info using node@v20.11.0
npm verb title npm run build
npm verb argv "run" "build" "--loglevel" "verbose"
npm verb logfile logs-max:10 dir:/opt/render/.cache/_logs/2024-05-29T20_33_41_388Z-
npm verb logfile /opt/render/.cache/_logs/2024-05-29T20_33_41_388Z-debug-0.log
npm verb cli /opt/render/project/nodes/node-20.11.0/bin/node /opt/render/project/nodes/node-20.11.0/lib/node_modules/npm/bin/npm-cli.js
npm info using npm@10.2.4
npm info using node@v20.11.0
npm verb title npm run build:1-next
npm verb argv "run" "build:1-next"
npm verb logfile logs-max:10 dir:/opt/render/.cache/_logs/2024-05-29T20_33_41_735Z-
npm verb logfile /opt/render/.cache/_logs/2024-05-29T20_33_41_735Z-debug-0.log
 ⚠ Compiled with warnings

./node_modules/@ts-morph/common/dist/typescript.js
Critical dependency: the request of a dependency is an expression

Import trace for requested module:
./node_modules/@ts-morph/common/dist/typescript.js
./node_modules/@ts-morph/common/dist/ts-morph-common.js
./node_modules/ts-morph/dist/ts-morph.js
./src/server/analyze/sourceMap.ts
./src/server/messaging/queue.ts
./src/server/webhooks/github.ts
./src/app/api/github/webhooks/route.ts

request to https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap failed, reason: 

Retrying 1/3...

Failed to compile.

./src/app/dashboard/[org]/[repo]/[developer]/components/chat/Chat.tsx
78:15  Error: Unsafe assignment of an `any` value.  @typescript-eslint/no-unsafe-assignment
79:9  Error: Unsafe return of an `any` typed value.  @typescript-eslint/no-unsafe-return
79:21  Error: Unsafe member access .url on an `any` value.  @typescript-eslint/no-unsafe-member-access

info  - Need to disable some ESLint rules? Learn more here: https://nextjs.org/docs/basic-features/eslint#disabling-rules
npm verb exit 1
npm verb code 1
ERROR: "build:1-next" exited with 1.
npm verb exit 1
npm verb code 1

Copy link
Contributor Author

jacob-ai-bot bot commented May 29, 2024

JACoB here...

I'm busy working on this error.

I'll continue to comment on this pull request with status as I make progress.

…stead of 'any'.

2. Investigate and potentially refactor the usage of dynamic imports in the ts-morph package to resolve the critical dependency warning.
Copy link
Contributor Author

jacob-ai-bot bot commented May 29, 2024

This PR has been updated with a new commit.

Next Steps

I am working to resolve an error. I will update this PR with my progress.
@jacob-ai-bot fix error

Error Message (Attempt Number 3):

Command failed: __NEXT_TEST_MODE=1 SKIP_ENV_VALIDATION=1 npm run build --verbose && npx tsc --noEmit
npm verb cli /opt/render/project/nodes/node-20.11.0/bin/node /opt/render/project/nodes/node-20.11.0/bin/npm
npm info using npm@10.2.4
npm info using node@v20.11.0
npm verb title npm run build
npm verb argv "run" "build" "--loglevel" "verbose"
npm verb logfile logs-max:10 dir:/opt/render/.cache/_logs/2024-05-29T20_37_13_687Z-
npm verb logfile /opt/render/.cache/_logs/2024-05-29T20_37_13_687Z-debug-0.log
npm verb cli /opt/render/project/nodes/node-20.11.0/bin/node /opt/render/project/nodes/node-20.11.0/lib/node_modules/npm/bin/npm-cli.js
npm info using npm@10.2.4
npm info using node@v20.11.0
npm verb title npm run build:1-next
npm verb argv "run" "build:1-next"
npm verb logfile logs-max:10 dir:/opt/render/.cache/_logs/2024-05-29T20_37_14_043Z-
npm verb logfile /opt/render/.cache/_logs/2024-05-29T20_37_14_043Z-debug-0.log
 ⚠ Compiled with warnings

./node_modules/@ts-morph/common/dist/typescript.js
Critical dependency: the request of a dependency is an expression

Import trace for requested module:
./node_modules/@ts-morph/common/dist/typescript.js
./node_modules/@ts-morph/common/dist/ts-morph-common.js
./node_modules/ts-morph/dist/ts-morph.js
./src/server/analyze/sourceMap.ts
./src/server/messaging/queue.ts
./src/server/webhooks/github.ts
./src/app/api/github/webhooks/route.ts


Failed to compile.

./src/app/dashboard/[org]/[repo]/[developer]/components/chat/Chat.tsx
78:15  Error: Unsafe assignment of an `any` value.  @typescript-eslint/no-unsafe-assignment

info  - Need to disable some ESLint rules? Learn more here: https://nextjs.org/docs/basic-features/eslint#disabling-rules
npm verb exit 1
npm verb code 1
ERROR: "build:1-next" exited with 1.
npm verb exit 1
npm verb code 1

Copy link
Contributor Author

jacob-ai-bot bot commented May 29, 2024

JACoB here...

I'm busy working on this error.

I'll continue to comment on this pull request with status as I make progress.

…s-morph library by configuring Webpack to ignore it.

2. Update the Chat.tsx file to ensure the value assigned to the variable is properly typed.
Copy link
Contributor Author

jacob-ai-bot bot commented May 29, 2024

This PR has been updated with a new commit.

Next Steps

I am working to resolve an error. I will update this PR with my progress.
@jacob-ai-bot fix error

Error Message (Attempt Number 4):

Command failed: __NEXT_TEST_MODE=1 SKIP_ENV_VALIDATION=1 npm run build --verbose && npx tsc --noEmit
npm verb cli /opt/render/project/nodes/node-20.11.0/bin/node /opt/render/project/nodes/node-20.11.0/bin/npm
npm info using npm@10.2.4
npm info using node@v20.11.0
npm verb title npm run build
npm verb argv "run" "build" "--loglevel" "verbose"
npm verb logfile logs-max:10 dir:/opt/render/.cache/_logs/2024-05-29T20_41_04_496Z-
npm verb logfile /opt/render/.cache/_logs/2024-05-29T20_41_04_496Z-debug-0.log
npm verb cli /opt/render/project/nodes/node-20.11.0/bin/node /opt/render/project/nodes/node-20.11.0/lib/node_modules/npm/bin/npm-cli.js
npm info using npm@10.2.4
npm info using node@v20.11.0
npm verb title npm run build:1-next
npm verb argv "run" "build:1-next"
npm verb logfile logs-max:10 dir:/opt/render/.cache/_logs/2024-05-29T20_41_04_948Z-
npm verb logfile /opt/render/.cache/_logs/2024-05-29T20_41_04_948Z-debug-0.log
 ⚠ Compiled with warnings

./node_modules/@ts-morph/common/dist/typescript.js
Critical dependency: the request of a dependency is an expression

Import trace for requested module:
./node_modules/@ts-morph/common/dist/typescript.js
./node_modules/@ts-morph/common/dist/ts-morph-common.js
./node_modules/ts-morph/dist/ts-morph.js
./src/server/analyze/sourceMap.ts
./src/server/messaging/queue.ts
./src/server/webhooks/github.ts
./src/app/api/github/webhooks/route.ts

request to https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap failed, reason: 

Retrying 1/3...

Failed to compile.

./src/app/dashboard/[org]/[repo]/[developer]/components/chat/Chat.tsx
78:15  Error: Unsafe assignment of an `any` value.  @typescript-eslint/no-unsafe-assignment

info  - Need to disable some ESLint rules? Learn more here: https://nextjs.org/docs/basic-features/eslint#disabling-rules
npm verb exit 1
npm verb code 1
ERROR: "build:1-next" exited with 1.
npm verb exit 1
npm verb code 1

Copy link
Contributor Author

jacob-ai-bot bot commented May 29, 2024

JACoB here...

I'm busy working on this error.

I'll continue to comment on this pull request with status as I make progress.

Copy link
Contributor Author

jacob-ai-bot bot commented May 29, 2024

JACoB here once again...

Unfortunately, I wasn't able to resolve the error(s).

Here is some information about the error(s):

The build failed due to an ESLint error in the file '/src/app/dashboard/[org]/[repo]/[developer]/components/chat/Chat.tsx'. Specifically, there is an unsafe assignment of an 'any' value at line 78. Additionally, there is a warning about a critical dependency in the 'typescript.js' file from the '@ts-morph/common' package.

Here are some ideas for fixing the error(s):

To fix the ESLint error, ensure that the variable being assigned a value has a proper type instead of 'any'. For the critical dependency warning, consider updating the import statement or handling the dynamic import more safely.

Here are the suggested fix(es):

Update '/src/app/dashboard/[org]/[repo]/[developer]/components/chat/Chat.tsx' to ensure that the variable on line 78 has a proper type instead of 'any'. For example, if the variable is expected to be a string, ensure it is typed as such. Additionally, review the import statements in 'typescript.js' from '@ts-morph/common' to handle dynamic imports more safely.

Copy link
Contributor Author

jacob-ai-bot bot commented May 29, 2024

Unfortunately, I ran into trouble working on this.

I was not able to write the requested code. Please contact support on https://docs.jacb.ai.

Copy link
Contributor

@kleneway kleneway left a comment

Choose a reason for hiding this comment

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

Move the upload input into the ChatMessage.tsx component. Also fix the typescript type errors.

Copy link
Contributor

@kleneway kleneway left a comment

Choose a reason for hiding this comment

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

@jacob-ai-bot Move the input upload from the Chat component to the ChatMessage component

Copy link
Contributor Author

jacob-ai-bot bot commented May 29, 2024

JACoB here...

I'm responding to a code review on this PR.

1 similar comment
Copy link
Contributor Author

jacob-ai-bot bot commented May 29, 2024

JACoB here...

I'm responding to a code review on this PR.

Copy link
Contributor Author

jacob-ai-bot bot commented May 29, 2024

This PR has been updated with a new commit.

Next Steps

I am working to resolve an error. I will update this PR with my progress.
@jacob-ai-bot fix error

Error Message:

Command failed: __NEXT_TEST_MODE=1 SKIP_ENV_VALIDATION=1 npm run build --verbose && npx tsc --noEmit
npm verb cli /opt/render/project/nodes/node-20.11.0/bin/node /opt/render/project/nodes/node-20.11.0/bin/npm
npm info using npm@10.2.4
npm info using node@v20.11.0
npm verb title npm run build
npm verb argv "run" "build" "--loglevel" "verbose"
npm verb logfile logs-max:10 dir:/opt/render/.cache/_logs/2024-05-29T21_32_57_786Z-
npm verb logfile /opt/render/.cache/_logs/2024-05-29T21_32_57_786Z-debug-0.log
npm verb cli /opt/render/project/nodes/node-20.11.0/bin/node /opt/render/project/nodes/node-20.11.0/lib/node_modules/npm/bin/npm-cli.js
npm info using npm@10.2.4
npm info using node@v20.11.0
npm verb title npm run build:1-next
npm verb argv "run" "build:1-next"
npm verb logfile logs-max:10 dir:/opt/render/.cache/_logs/2024-05-29T21_32_58_203Z-
npm verb logfile /opt/render/.cache/_logs/2024-05-29T21_32_58_203Z-debug-0.log
 ⚠ Compiled with warnings

./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/Issue.tsx
Attempted import error: 'renderers' is not exported from '../chat/ChatMessage' (imported as 'renderers').

Import trace for requested module:
./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/Issue.tsx
./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/index.tsx
./src/app/dashboard/[org]/[repo]/[developer]/Dashboard.tsx

./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/PullRequest.tsx
Attempted import error: 'renderers' is not exported from '../chat/ChatMessage' (imported as 'renderers').

Import trace for requested module:
./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/PullRequest.tsx
./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/index.tsx
./src/app/dashboard/[org]/[repo]/[developer]/Dashboard.tsx

./node_modules/@ts-morph/common/dist/typescript.js
Critical dependency: the request of a dependency is an expression

Import trace for requested module:
./node_modules/@ts-morph/common/dist/typescript.js
./node_modules/@ts-morph/common/dist/ts-morph-common.js
./node_modules/ts-morph/dist/ts-morph.js
./src/server/analyze/sourceMap.ts
./src/server/messaging/queue.ts
./src/server/webhooks/github.ts
./src/app/api/github/webhooks/route.ts

 ⚠ Compiled with warnings

./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/Issue.tsx
Attempted import error: 'renderers' is not exported from '../chat/ChatMessage' (imported as 'renderers').

Import trace for requested module:
./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/Issue.tsx
./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/index.tsx
./src/app/dashboard/[org]/[repo]/[developer]/Dashboard.tsx

./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/PullRequest.tsx
Attempted import error: 'renderers' is not exported from '../chat/ChatMessage' (imported as 'renderers').

Import trace for requested module:
./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/PullRequest.tsx
./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/index.tsx
./src/app/dashboard/[org]/[repo]/[developer]/Dashboard.tsx


Failed to compile.

./src/app/dashboard/[org]/[repo]/[developer]/components/chat/Chat.tsx
8:10  Warning: 'toast' is defined but never used.  @typescript-eslint/no-unused-vars

./src/app/dashboard/[org]/[repo]/[developer]/components/chat/ChatMessage.tsx
18:3  Warning: 'messageHistory' is defined but never used. Allowed unused args must match /^_/u.  @typescript-eslint/no-unused-vars
19:3  Warning: 'onCreateNewTask' is defined but never used. Allowed unused args must match /^_/u.  @typescript-eslint/no-unused-vars
20:3  Warning: 'onUpdateIssue' is defined but never used. Allowed unused args must match /^_/u.  @typescript-eslint/no-unused-vars
21:3  Warning: 'loading' is defined but never used. Allowed unused args must match /^_/u.  @typescript-eslint/no-unused-vars
61:15  Error: Unsafe assignment of an `any` value.  @typescript-eslint/no-unsafe-assignment

./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/Issue.tsx
60:25  Error: Unsafe assignment of an `any` value.  @typescript-eslint/no-unsafe-assignment

./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/PullRequest.tsx
63:25  Error: Unsafe assignment of an `any` value.  @typescript-eslint/no-unsafe-assignment

info  - Need to disable some ESLint rules? Learn more here: https://nextjs.org/docs/basic-features/eslint#disabling-rules
npm verb exit 1
npm verb code 1
ERROR: "build:1-next" exited with 1.
npm verb exit 1
npm verb code 1

Copy link
Contributor Author

jacob-ai-bot bot commented May 29, 2024

JACoB here...

I'm busy working on this error.

I'll continue to comment on this pull request with status as I make progress.

…PullRequest.tsx' to correctly import the necessary modules from '../chat/ChatMessage'. 2. Remove or use the unused variables in 'Chat.tsx' and 'ChatMessage.tsx'. 3. Ensure type safety in 'ChatMessage.tsx', 'Issue.tsx', and 'PullRequest.tsx' by properly typing the variables.
Copy link
Contributor Author

jacob-ai-bot bot commented May 29, 2024

This PR has been updated with a new commit.

Next Steps

I am working to resolve an error. I will update this PR with my progress.
@jacob-ai-bot fix error

Error Message (Attempt Number 2):

Command failed: __NEXT_TEST_MODE=1 SKIP_ENV_VALIDATION=1 npm run build --verbose && npx tsc --noEmit
npm verb cli /opt/render/project/nodes/node-20.11.0/bin/node /opt/render/project/nodes/node-20.11.0/bin/npm
npm info using npm@10.2.4
npm info using node@v20.11.0
npm verb title npm run build
npm verb argv "run" "build" "--loglevel" "verbose"
npm verb logfile logs-max:10 dir:/opt/render/.cache/_logs/2024-05-29T21_36_36_272Z-
npm verb logfile /opt/render/.cache/_logs/2024-05-29T21_36_36_272Z-debug-0.log
npm verb cli /opt/render/project/nodes/node-20.11.0/bin/node /opt/render/project/nodes/node-20.11.0/lib/node_modules/npm/bin/npm-cli.js
npm info using npm@10.2.4
npm info using node@v20.11.0
npm verb title npm run build:1-next
npm verb argv "run" "build:1-next"
npm verb logfile logs-max:10 dir:/opt/render/.cache/_logs/2024-05-29T21_36_36_606Z-
npm verb logfile /opt/render/.cache/_logs/2024-05-29T21_36_36_606Z-debug-0.log
Failed to compile.

./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/PullRequest.tsx
Error: 
  x Expected ',', got '<eof>'
   ,-[/mnt/tmp/tmp-97-b4Px4LFuWvkX/src/app/dashboard/[org]/[repo]/[developer]/components/workspace/PullRequest.tsx:3:1]
 3 | import gfm from "remark-gfm";
 4 | import { faCircleDot } from "@fortawesome/free-solid-svg-icons";
 5 | import { faGithub } from "@fortawesome/free-brands-svg-icons";
 6 | import { FontAwesome
   :          ^^^^^^^^^^^
   `----

Caused by:
    Syntax Error

Import trace for requested module:
./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/PullRequest.tsx
./src/app/dashboard/[org]/[repo]/[developer]/components/workspace/index.tsx
./src/app/dashboard/[org]/[repo]/[developer]/Dashboard.tsx


> Build failed because of webpack errors
npm verb exit 1
npm verb code 1
ERROR: "build:1-next" exited with 1.
npm verb exit 1
npm verb code 1

Copy link
Contributor Author

jacob-ai-bot bot commented May 29, 2024

JACoB here...

I'm busy working on this error.

I'll continue to comment on this pull request with status as I make progress.

Copy link
Contributor Author

jacob-ai-bot bot commented May 29, 2024

Unfortunately, I ran into trouble working on this.

Here is some error information:

Expected the module specifier to be a string literal.

@kleneway kleneway closed this May 29, 2024
@kleneway kleneway deleted the jacob-issue-42-1717014690218 branch October 25, 2024 21:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant