swimcyclecode commited on
Commit
58ef00a
1 Parent(s): a8c11a7

Fix invalid colorFrom causing build failure when duplicating space

Browse files

The colorFrom field, which determines one of the colours of the [thumbnail gradient](https://huggingface.co/docs/hub/spaces-config-reference) is currently set to an invalid colour 'white'. This causes the build to fail when duplicating the space.

Changed it to the nearest valid colour 'gray', but any of the other valid colours will fix the issue.

Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -7,7 +7,7 @@ tags:
7
  - "LLMs"
8
  app_file: "app.py"
9
  emoji: 🎵
10
- colorFrom: white
11
  colorTo: blue
12
  sdk: gradio
13
  sdk_version: 3.34.0
 
7
  - "LLMs"
8
  app_file: "app.py"
9
  emoji: 🎵
10
+ colorFrom: gray
11
  colorTo: blue
12
  sdk: gradio
13
  sdk_version: 3.34.0