|
| 1 | +<ul class="web-chat-list"> |
| 2 | + <li class="web-chat-item is-user-a"> |
| 3 | + <div class="web-chat-message"> |
| 4 | + <div class="web-user-box"> |
| 5 | + <img |
| 6 | + class="web-user-box-image" |
| 7 | + src="/images/community/avatars/walter.avif" |
| 8 | + height="40" |
| 9 | + width="40" |
| 10 | + alt="Avatar of Walter" |
| 11 | + /> |
| 12 | + <div class="web-user-box-name flex gap-2"> |
| 13 | + <span class="text-sub-body font-medium">Walter O'Brien</span> |
| 14 | + <time class="text-caption web-u-color-text-tertiary">8:32 AM</time> |
| 15 | + </div> |
| 16 | + <div class="web-user-box-content text-caption text-primary"> |
| 17 | + Hello devs! I am getting a CORS error when sending a request to the backend. Can |
| 18 | + you help me? |
| 19 | + </div> |
| 20 | + </div> |
| 21 | + </div> |
| 22 | + </li> |
| 23 | + <li class="web-chat-item is-user-b"> |
| 24 | + <div class="web-chat-message reply"> |
| 25 | + <div class="web-user-box"> |
| 26 | + <img |
| 27 | + class="web-user-box-image" |
| 28 | + src="/images/avatars/steven.avif" |
| 29 | + width="48" |
| 30 | + height="48" |
| 31 | + alt="Avatar of Steven" |
| 32 | + /> |
| 33 | + <div class="web-user-box-name flex gap-2"> |
| 34 | + <span class="text-sub-body font-medium">Steven</span> |
| 35 | + <time class="text-caption web-u-color-text-tertiary">8:38 AM</time> |
| 36 | + </div> |
| 37 | + <div class="web-user-box-content text-caption text-primary"> |
| 38 | + Hey Walter! Is this the message you get |
| 39 | + <a class="web-link is-pink" href="/blog/post/cors-error" target="_blank" |
| 40 | + >"Access blocked by CORS policy"</a |
| 41 | + >? |
| 42 | + </div> |
| 43 | + </div> |
| 44 | + </div> |
| 45 | + </li> |
| 46 | + <li class="web-chat-item is-user-a"> |
| 47 | + <div class="web-chat-message"> |
| 48 | + <div class="web-user-box"> |
| 49 | + <img |
| 50 | + class="web-user-box-image" |
| 51 | + src="/images/community/avatars/walter.avif" |
| 52 | + height="40" |
| 53 | + width="40" |
| 54 | + alt="Avatar of Walter" |
| 55 | + /> |
| 56 | + <div class="web-user-box-name flex gap-2"> |
| 57 | + <span class="text-sub-body font-medium">Walter O'Brien</span> |
| 58 | + <time class="text-caption web-u-color-text-tertiary">9:05 AM</time> |
| 59 | + </div> |
| 60 | + <div class="web-user-box-content text-caption text-primary">Yes!</div> |
| 61 | + </div> |
| 62 | + </div> |
| 63 | + </li> |
| 64 | + <li class="web-chat-item is-user-b"> |
| 65 | + <div class="web-chat-message reply"> |
| 66 | + <div class="web-user-box"> |
| 67 | + <img |
| 68 | + class="web-user-box-image" |
| 69 | + src="/images/avatars/steven.avif" |
| 70 | + width="48" |
| 71 | + height="48" |
| 72 | + alt="Avatar of Steven" |
| 73 | + /> |
| 74 | + <div class="web-user-box-name flex gap-2"> |
| 75 | + <span class="text-sub-body font-medium">Steven</span> |
| 76 | + <time class="text-caption web-u-color-text-tertiary">9:08 AM</time> |
| 77 | + </div> |
| 78 | + <div class="web-user-box-content text-caption text-primary"> |
| 79 | + You should be able to debug this with a few steps. Just follow this blog: |
| 80 | + <a class="web-link is-pink" href="/blog/post/cors-error" target="_blank" |
| 81 | + >https://appwrite.io/blog/post/cors-error</a |
| 82 | + >. Let me know if this helps 🙂 |
| 83 | + </div> |
| 84 | + </div> |
| 85 | + </div> |
| 86 | + </li> |
| 87 | +</ul> |
| 88 | + |
| 89 | +<style> |
| 90 | + @media (max-width: 768px) { |
| 91 | + .web-chat-list { |
| 92 | + gap: 2rem; |
| 93 | + } |
| 94 | + } |
| 95 | +</style> |
0 commit comments